Full stack, modern web application generator. Using Flask, Docker, Swagger, automatic HTTPS and more...
As I have been the only maintainer of this project, I’ll continue the development in this fork: https://github.com/tiangolo/full-stack.
Generate a back end and front end stack using Python, including interactive API documentation.
Go to the directoy where you want to create your project and run:
pip install cookiecutter
cookiecutter https://github.com/senseta-os/base-project
You will be asked to provide passwords and secret keys for several components. Open another terminal and run:
openssl rand -hex 32
# Outputs something like: 99d3b1f01aa639e4a76f4fc281fc834747a543720ba4c8a8648ba755aef9be7f
Copy the contents and use that as password / secret key. And run that again to generate another secure key.
The generator (cookiecutter) will ask you for some data, you might want to have at hand before generating the project.
The input variables, with their default values (some auto generated) are:
project_name
: The name of the project
project_slug
: The development friendly name of the project. By default, based on the project name
domain_main
: The domain in where to deploy the project for production (from the branch production
), used by the load balancer, back end, etc. By default, based on the project slug.
domain_staging
: The domain in where to deploy while staging (before production) (from the branch master
). By default, based on the main domain.
domain_branch
: The domain in where to deploy the project while on another branch, probably a feature branch. By default, based on the main domain.
domain_dev
: The domain to use while developing. It won’t be deployed, but you should use it by modifying your local hosts
file.
docker_swarm_stack_name_main
: The name of the stack while deploying to Docker in Swarm mode for production. By default, based on the domain.
docker_swarm_stack_name_staging
: The name of the stack while deploying to Docker in Swarm mode for staging. By default, based on the domain.
docker_swarm_stack_name_branch
: The name of the stack while deploying to Docker in Swarm mode for feature branches. By default, based on the domain.
secret_key
: Back end server secret key. Use the method above to generate it.
first_superuser
: The first superuser generated, with it you will be able to create more users, etc. By default, based on the domain.
first_superuser_password
: First superuser password. Use the method above to generate it.
postgres_password
: Postgres database password. Use the method above to generate it. (You could easily modify it to use MySQL, MariaDB, etc).
pgadmin_default_user
: PGAdmin default user, to log-in to the PGAdmin interface.
pgadmin_default_user_password
: PGAdmin default user password. Generate it with the method above.
traefik_constraint_tag
: The tag to be used by the internal Traefik load balancer (for example, to divide requests between back end and front end) for production. Used to separate this stack from any other stack you might have. This should identify each stack in each environment (production, staging, etc).
traefik_constraint_tag_staging
: The Traefik tag to be used while on staging.
traefik_constraint_tag_branch
: The Traefik tag to be used while on a feature branch.
traefik_public_network
: This assumes you have another separate publicly facing Traefik at the server / cluster level. This is the network that main Traefik lives in.
traefik_public_constraint_tag
: The tag that should be used by stack services that should communicate with the public.
flower_auth
: Basic HTTP authentication for flower, in the formuser:password
. By default: “root:changethis
”.
sentry_dsn
: Key URL (DSN) of Sentry, for live error reporting. If you are not using it yet, you should, is open source. E.g.: https://1234abcd:[email protected]/30
.
docker_image_prefix
: Prefix to use for Docker image names. If you are using GitLab Docker registry it would be based on your code repository. E.g.: git.example.com:5005/development-team/my-awesome-project/
.
docker_image_backend
: Docker image name for the back end. By default, it will be based on your Docker image prefix, e.g.: git.example.com:5005/development-team/my-awesome-project/backend
. And depending on your environment, a different tag will be appended ( prod
, stag
, branch
). So, the final image names used will be like: git.example.com:5005/development-team/my-awesome-project/backend:prod
.
docker_image_celeryworker
: Docker image for the celery worker. By default, based on your Docker image prefix.
docker_image_frontend
: Docker image for the front end. By default, based on your Docker image prefix.
This stack can be adjusted and used with several deployment options that are compatible with Docker Compose, but it is designed to be used in a cluster controlled with pure Docker in Swarm Mode with a Traefik main load balancer proxy.
Read the Guide to deploy a Docker Swarm Mode Cluster in this repository.
This project is licensed under the terms of the MIT license.