create-fastapi-project
CLI to create Fastapi projects easily.
File Explorer
Download Latest Version (.zip)- publish.yml
- __init__.py
- git.py
- install.py
- __init__.py
- weather.py
- __init__.py
- api.py
- __init__.py
- __init__.py
- config.py
- response_schema.py
- __init__.py
- common_exception.py
- user_exceptions.py
- user_follow_exceptions.py
- __init__.py
- partial.py
- uuid6.py
- __init__.py
- main.py
- __init__.py
- README.md
- Dockerfile
- Caddyfile
- .env.example
- .gitignore
- docker-compose-dev.yml
- docker-compose.yml
- Makefile
- README.md
- 2022-09-25-19-46_60d49bf413b8.py
- 2022-10-03-18-32_3223652d21bd.py
- 2022-10-23-04-07_cc36a024e8ed.py
- 2022-11-03-14-16_3293815eb23c.py
- 2023-03-04-23-15_5591a516fc47.py
- 2023-03-17-17-34_13d2068684ab.py
- env.py
- README
- script.py.mako
- __init__.py
- cache.py
- group.py
- hero.py
- login.py
- periodic_tasks.py
- report.py
- role.py
- team.py
- user.py
- weather.py
- __init__.py
- api.py
- __init__.py
- celery_task.py
- deps.py
- __init__.py
- authz.polar
- authz.py
- celery.py
- config.py
- security.py
- __init__.py
- base_crud.py
- group_crud.py
- hero_crud.py
- image_media_crud.py
- role_crud.py
- team_crud.py
- user_crud.py
- user_follow_crud.py
- .DS_Store
- __init__.py
- init_db.py
- session.py
- celery_deps.py
- group_deps.py
- role_deps.py
- user_deps.py
- __init__.py
- base_uuid_model.py
- group_model.py
- hero_model.py
- image_media_model.py
- links_model.py
- media_model.py
- role_model.py
- team_model.py
- user_follow_model.py
- user_model.py
- common_schema.py
- group_schema.py
- hero_schema.py
- image_media_schema.py
- media_schema.py
- response_schema.py
- role_schema.py
- team_schema.py
- token_schema.py
- user_follow_schema.py
- user_schema.py
- __init__.py
- common_exception.py
- user_exceptions.py
- user_follow_exceptions.py
- __init__.py
- fastapi_globals.py
- map_schema.py
- minio_client.py
- partial.py
- print_model.py
- requestvars.py
- resize_image.py
- snowflake.py
- token.py
- uuid6.py
- __init__.py
- initial_data.py
- main.py
- __init__.py
- test_login.py
- test_user.py
- __init__.py
- test_main.py
- alembic.ini
- README.md
- Dockerfile
- sonar-project.properties
- Caddyfile
- servers.json
- .env.example
- .gitignore
- __init__.py
- create-dbs.sql
- docker-compose-dev.yml
- docker-compose-sonarqube.yml
- docker-compose-test.yml
- docker-compose.yml
- eslintrc.json
- LICENSE
- Makefile
- pgadmin.yml
- README.md
- __init__.py
- chat.py
- __init__.py
- api.py
- __init__.py
- __init__.py
- config.py
- adaptive_cards_schema.py
- message_schema.py
- response_schema.py
- chat.py
- cards.py
- __init__.py
- callback.py
- chains.py
- partial.py
- prompt_zero.py
- tools.py
- uuid6.py
- __init__.py
- main.py
- README.md
- Dockerfile
- Caddyfile
- main.py
- Dockerfile
- .env.example
- .gitignore
- docker-compose-dev.yml
- docker-compose.yml
- Makefile
- README.md
- streamlit.yml
- __init__.py
- .DS_Store
- __main__.py
- create_app.py
- main.py
- terminal.png
- __init__.py
- .DS_Store
- .gitignore
- __init__.py
- LICENSE
- Makefile
- poetry.lock
- pyproject.toml
- README.md
# Installation Guide
git clone https://github.com/allient/create-fastapi-project
Downloads the entire project code from GitHub to your computer.
cd create-fastapi-project
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install create-fastapi-project
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install create-fastapi-project
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
4. 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 install
Compiles the code based on the generated build configuration to produce an executable.
make run-app
Compiles the code based on the generated build configuration to produce an executable.
make run-dev-build
Compiles the code based on the generated build configuration to produce an executable.
make run-prod
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
