https://github.com/zepdev/flask-react-db-example
Example web application for TDA training purposes
https://github.com/zepdev/flask-react-db-example
Last synced: 11 months ago
JSON representation
Example web application for TDA training purposes
- Host: GitHub
- URL: https://github.com/zepdev/flask-react-db-example
- Owner: zepdev
- Created: 2021-11-04T10:11:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T15:32:30.000Z (almost 3 years ago)
- Last Synced: 2025-01-18T11:23:16.513Z (about 1 year ago)
- Language: Python
- Size: 1.23 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example web app with three services Flask, React, and Postgres
export REACT_APP_API_SERVICE_URL=http://localhost:5004
## Build the containers
docker-compose build
## Get things up and running
docker-compose up -d
### Create DB
docker-compose exec api python manage.py recreate_db
### Seed DB
docker-compose exec api python manage.py seed_db
Application is based on: https://testdriven.io/courses/auth-flask-react/