full-stack
Full stack, modern web application generator. Using Flask, PostgreSQL DB, Docker, Swagger, automatic HTTPS and more.
File Explorer
Download Latest Version (.zip)- .keep
- a404eea364dc_first_revision.py
- env.py
- README
- script.py.mako
- __init__.py
- role.py
- token.py
- user.py
- utils.py
- __init__.py
- api.py
- api_docs.py
- __init__.py
- __init__.py
- app_setup.py
- celery_app.py
- config.py
- cors.py
- errors.py
- jwt.py
- security.py
- __init__.py
- base.py
- base_class.py
- external_session.py
- flask_session.py
- init_db.py
- utils.py
- __init__.py
- base_relations.py
- role.py
- user.py
- __init__.py
- base.py
- msg.py
- role.py
- scalar.py
- token.py
- user.py
- __init__.py
- test_celery.py
- __init__.py
- test_token.py
- __init__.py
- test_user.py
- __init__.py
- __init__.py
- __init__.py
- __init__.py
- user.py
- utils.py
- .gitignore
- __init__.py
- conftest.py
- __init__.py
- backend_pre_start.py
- celeryworker_pre_start.py
- main.py
- tests_pre_start.py
- worker.py
- alembic.ini
- prestart.sh
- tests-start.sh
- uwsgi.ini
- worker-start.sh
- .gitignore
- backend.dockerfile
- celeryworker.dockerfile
- tests.dockerfile
- android-chrome-192x192.png
- android-chrome-512x512.png
- apple-touch-icon-120x120.png
- apple-touch-icon-152x152.png
- apple-touch-icon-180x180.png
- apple-touch-icon-60x60.png
- apple-touch-icon-76x76.png
- apple-touch-icon.png
- favicon-16x16.png
- favicon-32x32.png
- msapplication-icon-144x144.png
- mstile-150x150.png
- safari-pinned-tab.svg
- favicon.ico
- index.html
- manifest.json
- robots.txt
- logo.png
- UploadButton.vue
- vuetify.ts
- Login.vue
- Main.vue
- Start.vue
- api.ts
- App.vue
- component-hooks.ts
- env.ts
- main.ts
- registerServiceWorker.ts
- router.ts
- shims-tsx.d.ts
- shims-vue.d.ts
- store.ts
- utils.ts
- upload-button.spec.ts
- .dockerignore
- .env
- .gitignore
- babel.config.js
- Dockerfile
- package.json
- README.md
- tsconfig.json
- tslint.json
- vue.config.js
- .env
- .gitignore
- .gitlab-ci.yml
- cookiecutter-config-file.yml
- docker-compose.deploy.build.yml
- docker-compose.deploy.command.yml
- docker-compose.deploy.images.yml
- docker-compose.deploy.labels.yml
- docker-compose.deploy.networks.yml
- docker-compose.deploy.volumes-placement.yml
- docker-compose.dev.build.yml
- docker-compose.dev.command.yml
- docker-compose.dev.env.yml
- docker-compose.dev.labels.yml
- docker-compose.dev.networks.yml
- docker-compose.dev.ports.yml
- docker-compose.dev.volumes.yml
- docker-compose.shared.admin.yml
- docker-compose.shared.base-images.yml
- docker-compose.shared.depends.yml
- docker-compose.shared.env.yml
- docker-compose.test.yml
- env-backend.env
- env-flower.env
- env-pgadmin.env
- env-postgres.env
- README.md
- script-build-push.sh
- script-build.sh
- script-deploy.sh
- script-test.sh
- .gitignore
- .travis.yml
- cookiecutter.json
- docker-swarm-cluster-deploy.md
- LICENSE
- README.md
- screenshot.png
- test.sh
- testing-config.yml
๐ Installation Guide
1. Get the code
git clone https://github.com/tiangolo/full-stack
Downloads the entire project code from GitHub to your computer.
cd full-stack
Moves into the project folder you just downloaded.
2. Official Install Script
Easy RecommendedPrerequisites
- Python 3 Python is required to use pip.
pip install cookiecutter
Installs the package published on PyPI directly โ no need to clone the source.
After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.
Pulled directly from this repo's README.
3. Docker
EasyPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f {{cookiecutter.project_slug}}/docker-compose.deploy.build.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
4. Node.js
EasyPrerequisites
cd {{cookiecutter.project_slug}}/frontend
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
