https://github.com/vicba/flask-saas-boiler
https://github.com/vicba/flask-saas-boiler
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vicba/flask-saas-boiler
- Owner: Vicba
- Created: 2024-08-24T09:10:08.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T18:57:17.000Z (9 months ago)
- Last Synced: 2025-02-16T04:27:20.278Z (4 months ago)
- Language: Python
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Saas backend starter
TODO
- [] NEEDS CLEANUP in authmake sure stripe cli is listening to /api/payment/webhook
# Tech Stack
- Flask
- MongoDB
- Stripe
- Google OAuth### Google Auth
1. Set up a Google OAuth 2.0 client ID and secret in the Google Developers Console.
2. Set the `GOOGLE_CLIENT_ID` and `GOOGLE_CLIENT_SECRET` environment variables to the values from the Google Developers Console.# Scripts
A common recommendation is to start with (2 x $server_num_cpu_cores) + 1 t
```bash
gunicorn --worker-class gevent --workers 4 --bind 0.0.0.0:5000 app:app
```