-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
522a3f7
commit dc0e212
Showing
6 changed files
with
512 additions
and
18 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 |
---|---|---|
|
@@ -7,28 +7,14 @@ AWS_ACCESS_KEY_ID=test | |
AWS_SECRET_ACCESS_KEY=test | ||
AWS_DEFAULT_REGION=us-east-1 | ||
|
||
PUBLIC_BUCKET_NAME=las-musas-public | ||
PRIVATE_BUCKET_NAME=las-musas-private | ||
|
||
DISCORD_BOT_CLIENT_ID= | ||
DISCORD_BOT_CLIENT_SECRET= | ||
DISCORD_BOT_TOKEN= | ||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_SECRET= | ||
|
||
JWT_SECRET=foo | ||
|
||
MONGODB_URL=mongodb://mongodb:27017 | ||
DB_DATABASE=database | ||
DATABASE_URL=postgresql://user:password@host:port/database?schema=public | ||
|
||
FRONT_URL=http://localhost:3001 | ||
BACKOFFICE_URL=http://localhost:3001 | ||
API_URL=http://localhost:3000 | ||
PUBLIC_FILES_URL=http://localhost:4566/las-musas-public | ||
|
||
[email protected] | ||
|
||
GERENCIANET_PIX_KEY= | ||
GERENCIANET_CERTIFICATE_CERT= | ||
GERENCIANET_CERTIFICATE_KEY= | ||
GERENCIANET_CLIENT_ID= | ||
GERENCIANET_CLIENT_SECRET= | ||
GERENCIANET_URL= |
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,20 @@ | ||
name: prisma-validate | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '*.prisma' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install prisma | ||
run: sudo yarn add -g prisma | ||
|
||
- name: Validate prisma | ||
run: prisma validate |
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.