-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update references from Blueprint to ForgeX across the proje…
…ct (#2)
- Loading branch information
Showing
32 changed files
with
183 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Linting Generated Blueprints Advanced | ||
name: Linting Generated ForgeXs Advanced | ||
|
||
on: | ||
pull_request: {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Linting Generated Blueprints Core | ||
name: Linting Generated ForgeXs Core | ||
|
||
on: | ||
pull_request: {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
Copyright © 2023 Melkey [email protected] | ||
Copyright © 2024 [email protected] | ||
*/ | ||
package cmd | ||
|
||
|
@@ -13,7 +13,7 @@ import ( | |
var rootCmd = &cobra.Command{ | ||
Use: "forgex", | ||
Short: "A program to spin up a quick Go project using a popular framework", | ||
Long: `Go Blueprint is a CLI tool that allows users to spin up a Go project with the corresponding structure seamlessly. | ||
Long: `Go ForgeX is a CLI tool that allows users to spin up a Go project with the corresponding structure seamlessly. | ||
It also gives the option to integrate with one of the more popular Go frameworks!`, | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{{ if .AdvancedOptions.docker }} | ||
BLUEPRINT_DB_HOST=mongo_bp | ||
ForgeX_DB_HOST=mongo_bp | ||
{{- else }} | ||
BLUEPRINT_DB_HOST=localhost | ||
ForgeX_DB_HOST=localhost | ||
{{- end }} | ||
BLUEPRINT_DB_PORT=27017 | ||
BLUEPRINT_DB_USERNAME=melkey | ||
BLUEPRINT_DB_ROOT_PASSWORD=password1234 | ||
ForgeX_DB_PORT=27017 | ||
ForgeX_DB_USERNAME=melkey | ||
ForgeX_DB_ROOT_PASSWORD=password1234 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{{- if .AdvancedOptions.docker }} | ||
BLUEPRINT_DB_HOST=mysql_bp | ||
ForgeX_DB_HOST=mysql_bp | ||
{{- else }} | ||
BLUEPRINT_DB_HOST=localhost | ||
ForgeX_DB_HOST=localhost | ||
{{- end }} | ||
BLUEPRINT_DB_PORT=3306 | ||
BLUEPRINT_DB_DATABASE=blueprint | ||
BLUEPRINT_DB_USERNAME=melkey | ||
BLUEPRINT_DB_PASSWORD=password1234 | ||
BLUEPRINT_DB_ROOT_PASSWORD=password4321 | ||
ForgeX_DB_PORT=3306 | ||
ForgeX_DB_DATABASE=ForgeX | ||
ForgeX_DB_USERNAME=melkey | ||
ForgeX_DB_PASSWORD=password1234 | ||
ForgeX_DB_ROOT_PASSWORD=password4321 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{{- if .AdvancedOptions.docker }} | ||
BLUEPRINT_DB_HOST=psql_bp | ||
ForgeX_DB_HOST=psql_bp | ||
{{- else }} | ||
BLUEPRINT_DB_HOST=localhost | ||
ForgeX_DB_HOST=localhost | ||
{{- end }} | ||
BLUEPRINT_DB_PORT=5432 | ||
BLUEPRINT_DB_DATABASE=blueprint | ||
BLUEPRINT_DB_USERNAME=melkey | ||
BLUEPRINT_DB_PASSWORD=password1234 | ||
BLUEPRINT_DB_SCHEMA=public | ||
ForgeX_DB_PORT=5432 | ||
ForgeX_DB_DATABASE=ForgeX | ||
ForgeX_DB_USERNAME=melkey | ||
ForgeX_DB_PASSWORD=password1234 | ||
ForgeX_DB_SCHEMA=public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{{- if .AdvancedOptions.docker }} | ||
BLUEPRINT_DB_ADDRESS=redis_bp | ||
ForgeX_DB_ADDRESS=redis_bp | ||
{{- else }} | ||
BLUEPRINT_DB_ADDRESS=localhost | ||
ForgeX_DB_ADDRESS=localhost | ||
{{- end }} | ||
BLUEPRINT_DB_PORT=6379 | ||
BLUEPRINT_DB_PASSWORD= | ||
BLUEPRINT_DB_DATABASE=0 | ||
ForgeX_DB_PORT=6379 | ||
ForgeX_DB_PASSWORD= | ||
ForgeX_DB_DATABASE=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{{- if .AdvancedOptions.docker }} | ||
BLUEPRINT_DB_URL=./db/test.db | ||
ForgeX_DB_URL=./db/test.db | ||
{{- else }} | ||
BLUEPRINT_DB_URL=./test.db | ||
ForgeX_DB_URL=./test.db | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.