-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve merge conflicts in feature/dynamic-chart-colors PR
- Loading branch information
Showing
160 changed files
with
9,958 additions
and
8,175 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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Reset to the latest file code in the develop branch before merging to develop | ||
# Clean up your `Casimir${Stack}${Stage}` stacks from the AWS CloudFormation console after use | ||
# If you want to use a different branch or stage name (not sandbox), edit line 7 or 11 accordingly | ||
name: Push | ||
on: | ||
push: | ||
branches: [sandbox] # Replace with your branch name | ||
|
||
env: | ||
PROJECT: casimir | ||
STAGE: sandbox # Replace with your stage name | ||
AWS_REGION: us-east-2 | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
|
||
# Skip any pushes with commit flag '(skip deploy)' | ||
# Comment out for testing | ||
if: ${{ !contains(github.event.head_commit.message, '(skip deploy)') }} | ||
|
||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Install action dependencies | ||
run: | | ||
curl -sSf https://atlasgo.sh | sh | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ env.AWS_REGION }} | ||
|
||
- name: Install and build all package dependencies | ||
run: npm ci | ||
env: | ||
PUBLIC_STAGE: ${{ env.STAGE }} | ||
|
||
- name: Deploy cdk infrastructure | ||
run: npm run deploy:cdk | ||
|
||
- name: Migrate users database | ||
run: npm run migrations:users |
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 |
---|---|---|
|
@@ -12,4 +12,6 @@ cdk-outputs.json | |
# Sensitive | ||
**/**/secrets/*.json | ||
|
||
services/crawler/.env | ||
services/crawler/.env | ||
|
||
.out |
Oops, something went wrong.