├── .dockerignore ├── .github └── dependabot.yml ├── .gitignore ├── Dockerfile ├── README.md ├── backend ├── .coveragerc ├── .env ├── alembic.ini ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 875b697ccea6_initial.py ├── apis │ ├── base.py │ ├── utils.py │ └── version1 │ │ ├── route_jobs.py │ │ ├── route_login.py │ │ └── route_users.py ├── core │ ├── config.py │ ├── hashing.py │ └── security.py ├── db │ ├── __init__.py │ ├── base.py │ ├── base_class.py │ ├── models │ │ ├── jobs.py │ │ └── users.py │ ├── repository │ │ ├── jobs.py │ │ ├── login.py │ │ └── users.py │ └── session.py ├── main.py ├── requirements.txt ├── schemas │ ├── jobs.py │ └── users.py ├── static │ ├── images │ │ ├── favicon.ico │ │ └── logo.png │ └── js │ │ └── autocomplete.js ├── templates │ ├── auth │ │ └── login.html │ ├── components │ │ ├── alerts.html │ │ ├── card.html │ │ └── navbar.html │ ├── jobs │ │ ├── create_job.html │ │ ├── detail.html │ │ ├── homepage.html │ │ ├── show_jobs_to_update_delete.html │ │ └── update_job.html │ ├── shared │ │ └── base.html │ └── users │ │ └── users_register.html ├── tests │ ├── conftest.py │ ├── db │ │ └── test_jobs_repo.py │ ├── test_routes │ │ ├── test_jobs.py │ │ └── test_users.py │ └── utils │ │ └── user.py └── webapps │ ├── auth │ ├── forms.py │ └── route_login.py │ ├── base.py │ ├── jobs │ ├── forms.py │ └── route_jobs.py │ └── users │ ├── forms.py │ └── route_users.py ├── docker-compose.yml └── learn ├── .coveregerc ├── .env ├── 001_helloWorld.py ├── 002_helloWorld_metadata.py ├── 003_metadataTags_url.py ├── 004_docs.py ├── 005_disable_docs.py ├── 006_docs_url.py ├── 007_project_config.py ├── 008_env_var.py ├── 009_connect_db.py ├── 010_create_users.py ├── 011_create_users1.py ├── 012_test_jquery_datatbales.html ├── 012_test_jquery_datatbales.html.save ├── alembic.ini ├── config.py ├── database.py ├── hashing.py ├── main.py ├── migrations ├── README ├── env.py ├── script.py.mako └── versions │ └── 3da1df7e42b1_initial.py ├── models.py ├── requirements.txt ├── routers ├── __init__.py ├── items.py ├── login.py └── users.py ├── schemas.py ├── static ├── images │ ├── favicon.ico │ └── logo.png └── js │ └── autocomplete.js ├── templates ├── base.html ├── card.html ├── create_item.html ├── item_detail.html ├── item_homepage.html ├── login.html ├── navbar.html ├── show_items_to_update_delete.html ├── update_item.html └── user_register.html ├── tests ├── conftest.py ├── test1_userroute.py ├── test2_userroute.py ├── test_itemroute.py └── test_userroute.py ├── utils.py └── webapps └── routers ├── auth.py ├── items.py └── users.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/README.md -------------------------------------------------------------------------------- /backend/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* 3 | -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/alembic.ini -------------------------------------------------------------------------------- /backend/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /backend/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/alembic/env.py -------------------------------------------------------------------------------- /backend/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/alembic/script.py.mako -------------------------------------------------------------------------------- /backend/alembic/versions/875b697ccea6_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/alembic/versions/875b697ccea6_initial.py -------------------------------------------------------------------------------- /backend/apis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/apis/base.py -------------------------------------------------------------------------------- /backend/apis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/apis/utils.py -------------------------------------------------------------------------------- /backend/apis/version1/route_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/apis/version1/route_jobs.py -------------------------------------------------------------------------------- /backend/apis/version1/route_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/apis/version1/route_login.py -------------------------------------------------------------------------------- /backend/apis/version1/route_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/apis/version1/route_users.py -------------------------------------------------------------------------------- /backend/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/core/config.py -------------------------------------------------------------------------------- /backend/core/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/core/hashing.py -------------------------------------------------------------------------------- /backend/core/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/core/security.py -------------------------------------------------------------------------------- /backend/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/base.py -------------------------------------------------------------------------------- /backend/db/base_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/base_class.py -------------------------------------------------------------------------------- /backend/db/models/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/models/jobs.py -------------------------------------------------------------------------------- /backend/db/models/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/models/users.py -------------------------------------------------------------------------------- /backend/db/repository/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/repository/jobs.py -------------------------------------------------------------------------------- /backend/db/repository/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/repository/login.py -------------------------------------------------------------------------------- /backend/db/repository/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/repository/users.py -------------------------------------------------------------------------------- /backend/db/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/db/session.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/schemas/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/schemas/jobs.py -------------------------------------------------------------------------------- /backend/schemas/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/schemas/users.py -------------------------------------------------------------------------------- /backend/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/static/images/favicon.ico -------------------------------------------------------------------------------- /backend/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/static/images/logo.png -------------------------------------------------------------------------------- /backend/static/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/static/js/autocomplete.js -------------------------------------------------------------------------------- /backend/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/auth/login.html -------------------------------------------------------------------------------- /backend/templates/components/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/components/alerts.html -------------------------------------------------------------------------------- /backend/templates/components/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/components/card.html -------------------------------------------------------------------------------- /backend/templates/components/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/components/navbar.html -------------------------------------------------------------------------------- /backend/templates/jobs/create_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/jobs/create_job.html -------------------------------------------------------------------------------- /backend/templates/jobs/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/jobs/detail.html -------------------------------------------------------------------------------- /backend/templates/jobs/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/jobs/homepage.html -------------------------------------------------------------------------------- /backend/templates/jobs/show_jobs_to_update_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/jobs/show_jobs_to_update_delete.html -------------------------------------------------------------------------------- /backend/templates/jobs/update_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/jobs/update_job.html -------------------------------------------------------------------------------- /backend/templates/shared/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/shared/base.html -------------------------------------------------------------------------------- /backend/templates/users/users_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/templates/users/users_register.html -------------------------------------------------------------------------------- /backend/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/tests/conftest.py -------------------------------------------------------------------------------- /backend/tests/db/test_jobs_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/tests/db/test_jobs_repo.py -------------------------------------------------------------------------------- /backend/tests/test_routes/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/tests/test_routes/test_jobs.py -------------------------------------------------------------------------------- /backend/tests/test_routes/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/tests/test_routes/test_users.py -------------------------------------------------------------------------------- /backend/tests/utils/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/tests/utils/user.py -------------------------------------------------------------------------------- /backend/webapps/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/auth/forms.py -------------------------------------------------------------------------------- /backend/webapps/auth/route_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/auth/route_login.py -------------------------------------------------------------------------------- /backend/webapps/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/base.py -------------------------------------------------------------------------------- /backend/webapps/jobs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/jobs/forms.py -------------------------------------------------------------------------------- /backend/webapps/jobs/route_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/jobs/route_jobs.py -------------------------------------------------------------------------------- /backend/webapps/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/users/forms.py -------------------------------------------------------------------------------- /backend/webapps/users/route_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/backend/webapps/users/route_users.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /learn/.coveregerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* 3 | -------------------------------------------------------------------------------- /learn/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/.env -------------------------------------------------------------------------------- /learn/001_helloWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/001_helloWorld.py -------------------------------------------------------------------------------- /learn/002_helloWorld_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/002_helloWorld_metadata.py -------------------------------------------------------------------------------- /learn/003_metadataTags_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/003_metadataTags_url.py -------------------------------------------------------------------------------- /learn/004_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/004_docs.py -------------------------------------------------------------------------------- /learn/005_disable_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/005_disable_docs.py -------------------------------------------------------------------------------- /learn/006_docs_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/006_docs_url.py -------------------------------------------------------------------------------- /learn/007_project_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/007_project_config.py -------------------------------------------------------------------------------- /learn/008_env_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/008_env_var.py -------------------------------------------------------------------------------- /learn/009_connect_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/009_connect_db.py -------------------------------------------------------------------------------- /learn/010_create_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/010_create_users.py -------------------------------------------------------------------------------- /learn/011_create_users1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/011_create_users1.py -------------------------------------------------------------------------------- /learn/012_test_jquery_datatbales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/012_test_jquery_datatbales.html -------------------------------------------------------------------------------- /learn/012_test_jquery_datatbales.html.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/012_test_jquery_datatbales.html.save -------------------------------------------------------------------------------- /learn/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/alembic.ini -------------------------------------------------------------------------------- /learn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/config.py -------------------------------------------------------------------------------- /learn/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/database.py -------------------------------------------------------------------------------- /learn/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/hashing.py -------------------------------------------------------------------------------- /learn/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/main.py -------------------------------------------------------------------------------- /learn/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /learn/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/migrations/env.py -------------------------------------------------------------------------------- /learn/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/migrations/script.py.mako -------------------------------------------------------------------------------- /learn/migrations/versions/3da1df7e42b1_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/migrations/versions/3da1df7e42b1_initial.py -------------------------------------------------------------------------------- /learn/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/models.py -------------------------------------------------------------------------------- /learn/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/requirements.txt -------------------------------------------------------------------------------- /learn/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learn/routers/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/routers/items.py -------------------------------------------------------------------------------- /learn/routers/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/routers/login.py -------------------------------------------------------------------------------- /learn/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/routers/users.py -------------------------------------------------------------------------------- /learn/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/schemas.py -------------------------------------------------------------------------------- /learn/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/static/images/favicon.ico -------------------------------------------------------------------------------- /learn/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/static/images/logo.png -------------------------------------------------------------------------------- /learn/static/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/static/js/autocomplete.js -------------------------------------------------------------------------------- /learn/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/base.html -------------------------------------------------------------------------------- /learn/templates/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/card.html -------------------------------------------------------------------------------- /learn/templates/create_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/create_item.html -------------------------------------------------------------------------------- /learn/templates/item_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/item_detail.html -------------------------------------------------------------------------------- /learn/templates/item_homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/item_homepage.html -------------------------------------------------------------------------------- /learn/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/login.html -------------------------------------------------------------------------------- /learn/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/navbar.html -------------------------------------------------------------------------------- /learn/templates/show_items_to_update_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/show_items_to_update_delete.html -------------------------------------------------------------------------------- /learn/templates/update_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/update_item.html -------------------------------------------------------------------------------- /learn/templates/user_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/templates/user_register.html -------------------------------------------------------------------------------- /learn/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/tests/conftest.py -------------------------------------------------------------------------------- /learn/tests/test1_userroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/tests/test1_userroute.py -------------------------------------------------------------------------------- /learn/tests/test2_userroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/tests/test2_userroute.py -------------------------------------------------------------------------------- /learn/tests/test_itemroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/tests/test_itemroute.py -------------------------------------------------------------------------------- /learn/tests/test_userroute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/tests/test_userroute.py -------------------------------------------------------------------------------- /learn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/utils.py -------------------------------------------------------------------------------- /learn/webapps/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/webapps/routers/auth.py -------------------------------------------------------------------------------- /learn/webapps/routers/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/webapps/routers/items.py -------------------------------------------------------------------------------- /learn/webapps/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumanshu-Nankana/FastAPI/HEAD/learn/webapps/routers/users.py --------------------------------------------------------------------------------