├── .gitignore ├── LICENSE ├── Readme.md ├── backend ├── Dockerfile ├── api │ ├── __init__.py │ ├── api.py │ ├── config.py │ └── models.py ├── app.py └── requirements.txt ├── client ├── .dockerignore ├── Dockerfile ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── config.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── registerServiceWorker.js ├── db └── init │ └── init.sql ├── docker-compose-up.sh └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/Readme.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/backend/api/api.py -------------------------------------------------------------------------------- /backend/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/backend/api/config.py -------------------------------------------------------------------------------- /backend/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/backend/api/models.py -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/config.js: -------------------------------------------------------------------------------- 1 | export const CONFIG = { 2 | API_BASE_URL: 'http://192.168.99.100:5000' 3 | }; -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/client/src/registerServiceWorker.js -------------------------------------------------------------------------------- /db/init/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/db/init/init.sql -------------------------------------------------------------------------------- /docker-compose-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/docker-compose-up.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomahim/react-flask-postgres-boilerplate-with-docker/HEAD/docker-compose.yml --------------------------------------------------------------------------------