├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── __init__.py ├── company │ ├── __init__.py │ ├── database.py │ ├── models.py │ ├── oauth2.py │ ├── routers │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── comp.py │ │ └── users.py │ ├── schemas.py │ └── token.py ├── main.py ├── requirements.txt └── sess.py ├── companies.db └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | fastapi-env 2 | __pycache__ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/company/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/company/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/database.py -------------------------------------------------------------------------------- /app/company/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/models.py -------------------------------------------------------------------------------- /app/company/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/oauth2.py -------------------------------------------------------------------------------- /app/company/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/company/routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/routers/auth.py -------------------------------------------------------------------------------- /app/company/routers/comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/routers/comp.py -------------------------------------------------------------------------------- /app/company/routers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/routers/users.py -------------------------------------------------------------------------------- /app/company/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/schemas.py -------------------------------------------------------------------------------- /app/company/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/company/token.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/main.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/sess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/app/sess.py -------------------------------------------------------------------------------- /companies.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/companies.db -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdimk/loham/HEAD/requirements.txt --------------------------------------------------------------------------------