-
Notifications
You must be signed in to change notification settings - Fork 12
Create python-app.yml #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
flaviojmendes
wants to merge
29
commits into
main
Choose a base branch
from
ci-cd-app-engine
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
435f6cf
Create python-app.yml
flaviojmendes 529a12c
formatting
flaviojmendes ae65e3f
reformatting code
flaviojmendes 21689f0
Delete python-app.yml
flaviojmendes 7f9addf
adding first test
flaviojmendes d11700e
Merge branch 'ci-cd-app-engine' of github.com:flaviojmendes/brdevstre…
flaviojmendes 983621b
adding first test
flaviojmendes bf4ed89
requirements
flaviojmendes c1dfb2b
Update ci.yml
flaviojmendes 8b8a6b5
Update ci.yml
flaviojmendes f5d760e
refactoring env vars
flaviojmendes 0ee078c
Merge branch 'ci-cd-app-engine' of github.com:flaviojmendes/brdevstre…
flaviojmendes c356fd2
formatting
flaviojmendes 22c68b2
adding env for test
flaviojmendes 1505555
using env.test
flaviojmendes a14e03f
using env.test
flaviojmendes 6c58943
adding env.test
flaviojmendes 2805298
Update ci.yml
flaviojmendes 691ff23
Merge branch 'ci-cd-app-engine' of github.com:flaviojmendes/brdevstre…
flaviojmendes 777bf02
adding env.test
flaviojmendes 1118d27
adding env.test
flaviojmendes 45a8341
code coverage
flaviojmendes e225981
Ci cd app engine (#29)
flaviojmendes 167c494
Update ci.yml
flaviojmendes e11c670
Update ci.yml
flaviojmendes c39749a
Update ci.yml
flaviojmendes 3020c91
Delete main.yml
flaviojmendes 038a004
Update ci.yml
flaviojmendes 52aaa08
Merge branch 'develop' into ci-cd-app-engine
flaviojmendes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,18 @@ | ||
ENV=dev | ||
CLIENT_ID=6zakmdaqzkjqga9fmmsq922uq3tgw0 | ||
CLIENT_SECRET=qsgqic56t5mrip34lz5mcbr9o09ns3 | ||
TWITTER_API_KEY=z3mn1LTX4MA0qZtmDVn7OqRCQ | ||
TWITTER_API_SECRET=3Lj5nZyCQkxnMxJO1SCdLK7klmpeEAh9y1hwtmUQyuJFJE29PS | ||
TWITTER_ACCESS_TOKEN=24740510-xNhELDLkbuQBqc1ksO4DZbqOiuRmoXgoJpLxFtuzO | ||
TWITTER_ACCESS_SECRET=O5Ji4yGaX8YWb8TKw0zt50TN5uVCsQFgS6pe6kIAQgMxh | ||
GITHUB_TOKEN=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 | ||
PRIVATE_KEY=/etc/letsencrypt/live/brstreamers.dev/privkey.pem | ||
CERT=/etc/letsencrypt/live/brstreamers.dev/cert.pem | ||
API_TOKEN=1q2w3e4 | ||
DB=a | ||
DB_NAME=postgres | ||
DB_USER=postgres | ||
DB_PASS=mamaco123! | ||
DB_HOST=104.198.13.23 | ||
DB_PORT=5432 | ||
REDIS_HOST=104.198.13.23 |
This file contains hidden or 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,7 +1,18 @@ | ||
ENV=dev | ||
CLIENT_ID= #client ID for your Twitch App | ||
CLIENT_SECRET= #client Secret for your Twitch App | ||
PRIVATE_KEY= #private key (prod env only) | ||
CERT= #cert (prod env only) | ||
API_TOKEN= #token for private api (you choose here) | ||
DB= #sqlite db location | ||
ENV= | ||
CLIENT_ID= | ||
CLIENT_SECRET= | ||
TWITTER_API_KEY= | ||
TWITTER_API_SECRET= | ||
TWITTER_ACCESS_TOKEN= | ||
TWITTER_ACCESS_SECRET= | ||
GITHUB_TOKEN= | ||
PRIVATE_KEY= | ||
CERT= | ||
API_TOKEN= | ||
DB=a | ||
DB_NAME= | ||
DB_USER= | ||
DB_PASS= | ||
DB_HOST= | ||
DB_PORT= | ||
REDIS_HOST= |
This file contains hidden or 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,18 @@ | ||
ENV=a | ||
CLIENT_ID=a | ||
CLIENT_SECRET=a | ||
TWITTER_API_KEY=a | ||
TWITTER_API_SECRET=a | ||
TWITTER_ACCESS_TOKEN=a | ||
TWITTER_ACCESS_SECRET=a | ||
GITHUB_TOKEN=a | ||
PRIVATE_KEY=a | ||
CERT=a | ||
API_TOKEN=a | ||
DB=a | ||
DB_NAME=a | ||
DB_USER=a | ||
DB_PASS=a | ||
DB_HOST=a | ||
DB_PORT=a | ||
REDIS_HOST=a |
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remember to refresh all this secrets :)