├── .DS_Store ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── create_fastapi_project ├── .DS_Store ├── __main__.py ├── create_app.py ├── helpers │ ├── __init__.py │ ├── git.py │ └── install.py ├── main.py └── templates │ ├── __init__.py │ ├── basic │ ├── .env.example │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── backend │ │ ├── Dockerfile │ │ └── app │ │ │ ├── README.md │ │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ └── v1 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ └── endpoints │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── weather.py │ │ │ ├── core │ │ │ │ ├── __init__.py │ │ │ │ └── config.py │ │ │ ├── main.py │ │ │ ├── schemas │ │ │ │ └── response_schema.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── exceptions │ │ │ │ ├── __init__.py │ │ │ │ ├── common_exception.py │ │ │ │ ├── user_exceptions.py │ │ │ │ └── user_follow_exceptions.py │ │ │ │ ├── partial.py │ │ │ │ └── uuid6.py │ │ │ └── test │ │ │ └── __init__.py │ ├── caddy │ │ └── Caddyfile │ ├── docker-compose-dev.yml │ └── docker-compose.yml │ ├── full │ ├── .env.example │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── __init__.py │ ├── backend │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── README.md │ │ │ ├── alembic.ini │ │ │ ├── alembic │ │ │ │ ├── README │ │ │ │ ├── env.py │ │ │ │ ├── script.py.mako │ │ │ │ └── versions │ │ │ │ │ ├── 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 │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── celery_task.py │ │ │ │ │ ├── deps.py │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ └── endpoints │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── cache.py │ │ │ │ │ │ ├── group.py │ │ │ │ │ │ ├── hero.py │ │ │ │ │ │ ├── login.py │ │ │ │ │ │ ├── periodic_tasks.py │ │ │ │ │ │ ├── report.py │ │ │ │ │ │ ├── role.py │ │ │ │ │ │ ├── team.py │ │ │ │ │ │ ├── user.py │ │ │ │ │ │ └── weather.py │ │ │ │ ├── core │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── authz.polar │ │ │ │ │ ├── authz.py │ │ │ │ │ ├── celery.py │ │ │ │ │ ├── config.py │ │ │ │ │ └── security.py │ │ │ │ ├── crud │ │ │ │ │ ├── __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 │ │ │ │ ├── db │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── init_db.py │ │ │ │ │ └── session.py │ │ │ │ ├── deps │ │ │ │ │ ├── celery_deps.py │ │ │ │ │ ├── group_deps.py │ │ │ │ │ ├── role_deps.py │ │ │ │ │ └── user_deps.py │ │ │ │ ├── initial_data.py │ │ │ │ ├── main.py │ │ │ │ ├── models │ │ │ │ │ ├── __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 │ │ │ │ ├── schemas │ │ │ │ │ ├── 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 │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── common_exception.py │ │ │ │ │ ├── user_exceptions.py │ │ │ │ │ └── user_follow_exceptions.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 │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── test_login.py │ │ │ │ └── test_user.py │ │ │ │ └── test_main.py │ │ └── sonar-project.properties │ ├── caddy │ │ └── Caddyfile │ ├── create-dbs.sql │ ├── docker-compose-dev.yml │ ├── docker-compose-sonarqube.yml │ ├── docker-compose-test.yml │ ├── docker-compose.yml │ ├── eslintrc.json │ ├── pgadmin.yml │ └── pgadmin │ │ └── servers.json │ └── langchain_basic │ ├── .env.example │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── backend │ ├── Dockerfile │ └── app │ │ ├── README.md │ │ └── app │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ └── endpoints │ │ │ ├── __init__.py │ │ │ └── chat.py │ │ ├── core │ │ ├── __init__.py │ │ └── config.py │ │ ├── main.py │ │ ├── schemas │ │ ├── adaptive_cards_schema.py │ │ ├── message_schema.py │ │ └── response_schema.py │ │ ├── templates │ │ └── chat.py │ │ └── utils │ │ ├── __init__.py │ │ ├── adaptive_cards │ │ └── cards.py │ │ ├── callback.py │ │ ├── chains.py │ │ ├── partial.py │ │ ├── prompt_zero.py │ │ ├── tools.py │ │ └── uuid6.py │ ├── caddy │ └── Caddyfile │ ├── docker-compose-dev.yml │ ├── docker-compose.yml │ ├── frontend │ ├── Dockerfile │ └── app │ │ └── main.py │ └── streamlit.yml ├── poetry.lock ├── pyproject.toml ├── static └── terminal.png └── tests └── __init__.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __version__='0.1.1' 2 | -------------------------------------------------------------------------------- /create_fastapi_project/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/.DS_Store -------------------------------------------------------------------------------- /create_fastapi_project/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/__main__.py -------------------------------------------------------------------------------- /create_fastapi_project/create_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/create_app.py -------------------------------------------------------------------------------- /create_fastapi_project/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/helpers/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/helpers/git.py -------------------------------------------------------------------------------- /create_fastapi_project/helpers/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/helpers/install.py -------------------------------------------------------------------------------- /create_fastapi_project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/main.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/__init__.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/.env.example -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/.gitignore -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/Makefile -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/README.md -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/Dockerfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/api/v1/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/api/v1/api.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/api/v1/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/api/v1/endpoints/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/api/v1/endpoints/weather.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/core/config.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/main.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/schemas/response_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/schemas/response_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/__init__.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/common_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/common_exception.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/user_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/user_exceptions.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/user_follow_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/utils/exceptions/user_follow_exceptions.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/utils/partial.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/app/utils/uuid6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/backend/app/app/utils/uuid6.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/backend/app/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/caddy/Caddyfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/docker-compose-dev.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/basic/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/basic/docker-compose.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/.env.example -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/.gitignore -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/LICENSE -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/Makefile -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/README.md -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/Dockerfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic.ini -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/env.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/script.py.mako -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/versions/2022-09-25-19-46_60d49bf413b8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/versions/2022-09-25-19-46_60d49bf413b8.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/versions/2022-10-03-18-32_3223652d21bd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/versions/2022-10-03-18-32_3223652d21bd.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/versions/2022-10-23-04-07_cc36a024e8ed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/versions/2022-10-23-04-07_cc36a024e8ed.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/versions/2022-11-03-14-16_3293815eb23c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/versions/2022-11-03-14-16_3293815eb23c.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/versions/2023-03-04-23-15_5591a516fc47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/versions/2023-03-04-23-15_5591a516fc47.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/alembic/versions/2023-03-17-17-34_13d2068684ab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/alembic/versions/2023-03-17-17-34_13d2068684ab.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/celery_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/celery_task.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/deps.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/api.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/cache.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/group.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/hero.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/login.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/periodic_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/periodic_tasks.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/report.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/role.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/team.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/user.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/api/v1/endpoints/weather.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/core/authz.polar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/core/authz.polar -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/core/authz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/core/authz.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/core/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/core/celery.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/core/config.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/core/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/core/security.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/__init__.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/base_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/base_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/group_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/group_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/hero_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/hero_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/image_media_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/image_media_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/role_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/role_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/team_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/team_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/user_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/user_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/crud/user_follow_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/crud/user_follow_crud.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/db/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/db/.DS_Store -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/db/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/db/init_db.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/db/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/db/session.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/deps/celery_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/deps/celery_deps.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/deps/group_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/deps/group_deps.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/deps/role_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/deps/role_deps.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/deps/user_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/deps/user_deps.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/initial_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/initial_data.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/main.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/__init__.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/base_uuid_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/base_uuid_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/group_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/group_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/hero_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/hero_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/image_media_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/image_media_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/links_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/links_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/media_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/media_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/role_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/role_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/team_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/team_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/user_follow_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/user_follow_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/models/user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/models/user_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/common_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/common_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/group_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/group_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/hero_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/hero_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/image_media_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/image_media_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/media_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/media_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/response_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/response_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/role_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/role_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/team_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/team_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/token_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/token_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/user_follow_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/user_follow_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/schemas/user_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/schemas/user_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/exceptions/__init__.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/exceptions/common_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/exceptions/common_exception.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/exceptions/user_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/exceptions/user_exceptions.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/exceptions/user_follow_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/exceptions/user_follow_exceptions.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/fastapi_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/fastapi_globals.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/map_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/map_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/minio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/minio_client.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/partial.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/print_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/print_model.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/requestvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/requestvars.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/resize_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/resize_image.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/snowflake.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/token.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/app/utils/uuid6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/app/utils/uuid6.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/test/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/test/api/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/test/api/test_login.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/test/api/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/test/api/test_user.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/app/test/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/app/test/test_main.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/backend/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/backend/sonar-project.properties -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/caddy/Caddyfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/create-dbs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/create-dbs.sql -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/docker-compose-dev.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/docker-compose-sonarqube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/docker-compose-sonarqube.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/docker-compose-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/docker-compose-test.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/docker-compose.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/eslintrc.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/pgadmin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/pgadmin.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/full/pgadmin/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/full/pgadmin/servers.json -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/.env.example -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/.gitignore -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/Makefile -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/README.md -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/Dockerfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/api/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/api/v1/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/api/v1/api.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/api/v1/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/api/v1/endpoints/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/api/v1/endpoints/chat.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/core/config.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/main.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/schemas/adaptive_cards_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/schemas/adaptive_cards_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/schemas/message_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/schemas/message_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/schemas/response_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/schemas/response_schema.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/templates/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/templates/chat.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/adaptive_cards/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/adaptive_cards/cards.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/callback.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/chains.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/partial.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/prompt_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/prompt_zero.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/tools.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/backend/app/app/utils/uuid6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/backend/app/app/utils/uuid6.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/caddy/Caddyfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/docker-compose-dev.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/docker-compose.yml -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/frontend/Dockerfile -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/frontend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/frontend/app/main.py -------------------------------------------------------------------------------- /create_fastapi_project/templates/langchain_basic/streamlit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/create_fastapi_project/templates/langchain_basic/streamlit.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allient/create-fastapi-project/HEAD/static/terminal.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------