fastapi-genesis
FastAPI project Template generator to make your life easier ๐งฌ ๐
File Explorer
Download Latest Version (.zip)- FUNDING.yml
- .gitkeep
- release.yml
- .gitkeep
- env.py
- README
- script.py.mako
- __init__.py
- base.py
- user.py
- __init__.py
- base.py
- user.py
- __init__.py
- api_router.py
- user.py
- __init__.py
- token.py
- user.py
- __init__.py
- user.py
- utils.py
- __init__.py
- db.py
- main.py
- settings.py
- autogenerate.sh
- downgrade.sh
- welcome.txt
- __init__.py
- .env
- .gitignore
- .pre-commit-config.yaml
- alembic.ini
- docker-compose.yaml
- Dockerfile
- Makefile
- pyproject.toml
- README.md
- .gitignore
- .pre-commit-config.yaml
- cookiecutter.json
- LICENSE
- README.md
# Installation Guide
git clone https://github.com/Lolomgrofl/fastapi-genesis
Downloads the entire project code from GitHub to your computer.
cd fastapi-genesis
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install cookiecutter
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- 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.yml <- Docker compose configuration file
Runs the command against the services defined in the compose file.
Pulled directly from this repo's README.
4. Python
Easypip install cookiecutter
Installs the package published on PyPI directly โ no need to clone the source.
โโโ pyproject.toml <- Python dependencies for Poetry (see https://python-poetry.org/)
Runs the Python script (or module).
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
cd {{cookiecutter.repo_name}}
This project's files live in a subfolder, so move into it first.
make
Compiles the code based on the generated build configuration to produce an executable.
