tifa
Yet another opinionated fastapi-start-kit with best practice
File Explorer
Download Latest Version (.zip)- pytest.yml
- Dockerfile
- docker_postgres_init.sql
- __init__.py
- test_channel.py
- __init__.py
- test_health.py
- __init__.py
- __init__.py
- __init__.py
- test_product.py
- test_staff.py
- __init__.py
- test_auth.py
- __init__.py
- conftest.py
- test_app.py
- __init__.py
- __init__.py
- __init__.py
- router.py
- __init__.py
- router.py
- __init__.py
- deps.py
- __init__.py
- __init__.py
- base.py
- web.py
- worker.py
- __init__.py
- fastapi_plus.py
- redis.py
- __init__.py
- system.py
- user.py
- __init__.py
- input.css
- main.css
- index.js
- clicked.html
- index.html
- modal.html
- __init__.py
- pkg.py
- shell.py
- __init__.py
- api.py
- app.py
- auth.py
- consts.py
- db.py
- exceptions.py
- globals.py
- settings.py
- worker.py
- .flake8
- .gitignore
- .pre-commit-config.yaml
- docker-compose.yml
- fixture.py
- LICENSE
- Makefile
- mypy.ini
- package.json
- pnpm-lock.yaml
- poetry.lock
- pyproject.toml
- README.md
- settings.env.docker
- settings.env.docker.test
- tailwind.config.js
# Installation Guide
git clone https://github.com/hylarucoder/tifa
Downloads the entire project code from GitHub to your computer.
cd tifa
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- 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.
- newer docker compose way for developing experience
Runs the command against the services defined in the compose file.
- try automate every boring stuff with makefile/docker
Type this command into your terminal and run it.
Pulled directly from this repo's README.
3. Node.js
Easynpm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
4. Python
Easypoetry install
Installs the libraries listed in pyproject.toml.
- build with poetry
Type this command into your terminal and run it.
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).
make build-tifa
Compiles the code based on the generated build configuration to produce an executable.
make debug
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
