Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FLASK_APP='start'
FLASK_ENV='development'
DATABASE_URL="postgres://localhost:5432/caringapp_dev"
SECRET_KEY= b'\xa0#1\xad\x0b\x9b\x04\x1c\xf5\xba\xcc\x1bjH><\xad\xa2\x984P\x0bG\xfd\xb2\xdd\xe5\xab6\x13\x95\xa3'


S3_BUCKET_NAME = "my.cool-bucket"
S3_ACCESS_KEY = "AKIAUB6VJRLUAJBSOASM"
S3_SECRET_ACCESS_KEY = "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"


OAUTH_ID = "847179084203-ug2q60gna6f12lq4nhk08psdupk9uh9n.apps.googleusercontent.com"
OAUTH_KEY = "u9nV3NYk2YIgC3Thp3CDXXdg"
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.vscode
*.DS_Store
*__pycache__
*.env
caringapp_web/static/.webassets-cache
caringapp_web/static/gen
1 change: 1 addition & 0 deletions caringapp_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from caringapp_api.blueprints.users.views import users_api_blueprint
from caringapp_api.blueprints.sessions.views import sessions_api_blueprint


csrf.exempt(users_api_blueprint)
csrf.exempt(sessions_api_blueprint)
app.register_blueprint(users_api_blueprint, url_prefix='/api/v1/users')
Expand Down