1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

ignore missing static directory for deploy

This commit is contained in:
Lee Brown
2019-08-21 22:52:28 -08:00
parent f006057157
commit e8a920c44c
5 changed files with 25 additions and 16 deletions

View File

@ -377,10 +377,10 @@ Access/Secret Keys are required
--dry-run print out the deploy details
```
* `schema` - Runs the database migration using credentials from AWS Secrets Manager.
* `schema migrate` - Runs the database migration using credentials from AWS Secrets Manager.
```bash
$ cicd -env [dev|stage|prod] schema
$ cicd -env [dev|stage|prod] schema migrate
```
* `help` - Shows a list of commands
@ -398,12 +398,12 @@ Access/Secret Keys are required
Build the example service _web-app_
```bash
$ cicid --env=dev build service --name=web-app --release-tag=testv1 --dry-run=false
$ cicid --env=prod build service --name=web-app --release-tag=testv1 --dry-run=false
```
Deploy the example service _web-app_
```bash
$ cicid --env=dev deploy service --name=web-app --release-tag=testv1 --dry-run=false
$ cicid --env=prod deploy service --name=web-app --release-tag=testv1 --dry-run=false
```