-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from TrueSparrowSystems/branding_changes
Made changes according to branding
- Loading branch information
Showing
8 changed files
with
28 additions
and
28 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
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ Terraform CDK then utilizes the providers and modules specified to generate terr | |
It expects to have Route53 configured for the domain where you want to host the Ghost. If you want to use the existing VPC, you need to provide the `subnet ids` to launch the ECS tasks (recommend private subnets) and `public subnet ids` to launch the load balancer (ALB). | ||
2. **Existing Load Balancer**: You can use the existing load balancer (ALB) by providing the `load balancer listener ARN`. | ||
3. **Hosting URL**: It requires a `Ghost hosting url` where Ghost can be accessed on the web. | ||
4. **Static Website**: Refer [this](https://github.com/PLG-Works/ghost-static-website-generator) to host the static website for the generated content. You can also specify `Static website url` where it will provision the AWS S3 bucket to host the static website. | ||
4. **Static Website**: Refer [this](https://github.com/TrueSparrowSystems/ghost-static-website-generator) to host the static website for the generated content. You can also specify `Static website url` where it will provision the AWS S3 bucket to host the static website. | ||
5. **Existing MySQL Database**: The cli requires a MySQL database to store the Ghost configurations along with the content. You can provide the existing DB credentials like DB host, DB name, DB user password, and database name. (otherwise it'll create a new RDS instance). | ||
|
||
## Why do I need to use this tool? | ||
|
@@ -45,22 +45,22 @@ It comes with the following benefits: | |
|
||
- Install the package: | ||
```bash | ||
npm install -g plg-ghost | ||
npm install -g truesparrow-ghost | ||
``` | ||
- Deploy Ghost Stack and Backend Stack: | ||
```bash | ||
plg-ghost deploy | ||
truesparrow-ghost deploy | ||
``` | ||
|
||
- Destroy Ghost and Backend Stack: | ||
```bash | ||
plg-ghost destroy | ||
truesparrow-ghost destroy | ||
``` | ||
|
||
## Development: | ||
- Clone the repository: | ||
```bash | ||
git clone [email protected]:PLG-Works/ghost-hosting-cli.git | ||
git clone [email protected]:TrueSparrowSystems/ghost-hosting-cli.git | ||
``` | ||
- Install all dependencies: | ||
```bash | ||
|
@@ -85,4 +85,4 @@ It comes with the following benefits: | |
npm run dev -- destroy | ||
``` | ||
|
||
> While executing **deploy**/**destroy** command, you might get timeout exceptions because of network interruptions. If that is the case, then re-run the command to complete the execution. | ||
> While executing **deploy**/**destroy** command, you might get timeout exceptions because of network interruptions. If that is the case, then re-run the command to complete the execution. |
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,14 +1,14 @@ | ||
{ | ||
"ghostStackName": "ghost", | ||
"backendStackName": "backend", | ||
"nameLabel": "PLG Ghost Test", | ||
"nameIdentifier": "plg-ghost", | ||
"nameLabel": "True Sparrow Ghost Test", | ||
"nameIdentifier": "truesparrow-ghost", | ||
"configFile": "config.json", | ||
"outputFile": "output.json", | ||
"tfStateBucketName": "plg-ghost-tf-state", | ||
"tfStateBucketName": "truesparrow-ghost-tf-state", | ||
"tfStateBucketKey": "meta/ghost.tfstate", | ||
"tfStateBucketLockDdbTableName": "plg-ghost-tf-state-locking", | ||
"tfStateBucketLockDdbTableName": "truesparrow-ghost-tf-state-locking", | ||
"tags": { | ||
"Name": "PLG Ghost" | ||
"Name": "True Sparrow Ghost" | ||
} | ||
} |
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 @@ | ||
{ | ||
"configsS3BucketName": "plg-ghost-configs", | ||
"blogContentS3BucketName": "plg-ghost-blog-assets", | ||
"blogStaticS3BucketName": "plg-ghost-static-assets" | ||
"configsS3BucketName": "truesparrow-ghost-configs", | ||
"blogContentS3BucketName": "truesparrow-ghost-blog-assets", | ||
"blogStaticS3BucketName": "truesparrow-ghost-static-assets" | ||
} |
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