fastapi-auth-starter 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastapi_auth_starter/__init__.py +7 -0
- fastapi_auth_starter/cli.py +326 -0
- fastapi_auth_starter-0.1.3.data/data/README.md +247 -0
- fastapi_auth_starter-0.1.3.data/data/alembic/README +1 -0
- fastapi_auth_starter-0.1.3.data/data/alembic/env.py +100 -0
- fastapi_auth_starter-0.1.3.data/data/alembic/script.py.mako +28 -0
- fastapi_auth_starter-0.1.3.data/data/alembic/versions/279c472f4fd8_add_user_table.py +42 -0
- fastapi_auth_starter-0.1.3.data/data/alembic/versions/5f062b3648fa_change_user_id_from_uuid_to_string_for_.py +38 -0
- fastapi_auth_starter-0.1.3.data/data/alembic/versions/8d275132562b_create_tasks_table.py +44 -0
- fastapi_auth_starter-0.1.3.data/data/alembic.ini +150 -0
- fastapi_auth_starter-0.1.3.data/data/app/__init__.py +5 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/__init__.py +4 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/__init__.py +4 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/api.py +21 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/__init__.py +4 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/auth.py +513 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/health.py +50 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/task.py +182 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/user.py +144 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/__init__.py +8 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/auth.py +198 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/task.py +61 -0
- fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/user.py +96 -0
- fastapi_auth_starter-0.1.3.data/data/app/core/__init__.py +4 -0
- fastapi_auth_starter-0.1.3.data/data/app/core/config.py +107 -0
- fastapi_auth_starter-0.1.3.data/data/app/core/database.py +106 -0
- fastapi_auth_starter-0.1.3.data/data/app/core/dependencies.py +148 -0
- fastapi_auth_starter-0.1.3.data/data/app/core/exceptions.py +7 -0
- fastapi_auth_starter-0.1.3.data/data/app/db/__init__.py +4 -0
- fastapi_auth_starter-0.1.3.data/data/app/main.py +91 -0
- fastapi_auth_starter-0.1.3.data/data/app/models/__init__.py +14 -0
- fastapi_auth_starter-0.1.3.data/data/app/models/task.py +56 -0
- fastapi_auth_starter-0.1.3.data/data/app/models/user.py +45 -0
- fastapi_auth_starter-0.1.3.data/data/app/services/__init__.py +8 -0
- fastapi_auth_starter-0.1.3.data/data/app/services/auth.py +405 -0
- fastapi_auth_starter-0.1.3.data/data/app/services/task.py +165 -0
- fastapi_auth_starter-0.1.3.data/data/app/services/user.py +108 -0
- fastapi_auth_starter-0.1.3.data/data/pyproject.toml +77 -0
- fastapi_auth_starter-0.1.3.data/data/runtime.txt +2 -0
- fastapi_auth_starter-0.1.3.data/data/vercel.json +19 -0
- fastapi_auth_starter-0.1.3.dist-info/METADATA +283 -0
- fastapi_auth_starter-0.1.3.dist-info/RECORD +44 -0
- fastapi_auth_starter-0.1.3.dist-info/WHEEL +4 -0
- fastapi_auth_starter-0.1.3.dist-info/entry_points.txt +2 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "fastapi-auth-starter"
|
|
3
|
+
version = "0.1.3"
|
|
4
|
+
description = "A clean architecture FastAPI starter template with authentication, PostgreSQL, and Alembic migrations"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
# Vercel supports up to Python 3.12
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
# PyPI metadata - update with your information
|
|
9
|
+
authors = [
|
|
10
|
+
{name = "Godswill William", email = "godswill.wilz@gmail.com"},
|
|
11
|
+
]
|
|
12
|
+
license = {text = "MIT"}
|
|
13
|
+
keywords = ["fastapi", "starter", "template", "authentication", "postgresql", "alembic"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Framework :: FastAPI",
|
|
22
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
23
|
+
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
24
|
+
]
|
|
25
|
+
dependencies = [
|
|
26
|
+
"asyncpg>=0.30.0",
|
|
27
|
+
"authlib>=1.6.5",
|
|
28
|
+
"fastapi>=0.121.0",
|
|
29
|
+
"greenlet>=3.2.4",
|
|
30
|
+
"httpx>=0.28.1",
|
|
31
|
+
"pydantic>=2.0.0",
|
|
32
|
+
"pydantic-settings>=2.11.0",
|
|
33
|
+
"sqlalchemy>=2.0.44",
|
|
34
|
+
"uvicorn[standard]>=0.38.0",
|
|
35
|
+
"workos>=5.0.0",
|
|
36
|
+
]
|
|
37
|
+
# Project URLs - update with your repository
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://github.com/splenwilz/fastapi-auth-starter"
|
|
40
|
+
Documentation = "https://github.com/splenwilz/fastapi-auth-starter#readme"
|
|
41
|
+
Repository = "https://github.com/splenwilz/fastapi-auth-starter"
|
|
42
|
+
Issues = "https://github.com/splenwilz/fastapi-auth-starter/issues"
|
|
43
|
+
# CLI entry point for scaffolding new projects
|
|
44
|
+
# Usage: fastapi-auth-starter init <project-name>
|
|
45
|
+
[project.scripts]
|
|
46
|
+
fastapi-auth-starter = "fastapi_auth_starter.cli:main"
|
|
47
|
+
|
|
48
|
+
# Development dependencies (not needed for runtime on Vercel)
|
|
49
|
+
# These are only needed for local development and migrations
|
|
50
|
+
[project.optional-dependencies]
|
|
51
|
+
dev = [
|
|
52
|
+
"alembic>=1.17.1",
|
|
53
|
+
"psycopg2-binary>=2.9.11",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
# Build system configuration
|
|
57
|
+
# Reference: https://peps.python.org/pep-0517/
|
|
58
|
+
[build-system]
|
|
59
|
+
requires = ["hatchling"]
|
|
60
|
+
build-backend = "hatchling.build"
|
|
61
|
+
|
|
62
|
+
# Package data configuration
|
|
63
|
+
# Include template files when installing as a package
|
|
64
|
+
# Reference: https://hatch.pypa.io/latest/config/build/#shared-data
|
|
65
|
+
[tool.hatch.build.targets.wheel]
|
|
66
|
+
packages = ["fastapi_auth_starter"]
|
|
67
|
+
|
|
68
|
+
# Include template files as package data
|
|
69
|
+
# These will be accessible via the package installation
|
|
70
|
+
[tool.hatch.build.targets.wheel.shared-data]
|
|
71
|
+
"app" = "app"
|
|
72
|
+
"alembic" = "alembic"
|
|
73
|
+
"alembic.ini" = "alembic.ini"
|
|
74
|
+
"pyproject.toml" = "pyproject.toml"
|
|
75
|
+
"README.md" = "README.md"
|
|
76
|
+
"runtime.txt" = "runtime.txt"
|
|
77
|
+
"vercel.json" = "vercel.json"
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fastapi-auth-starter
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: A clean architecture FastAPI starter template with authentication, PostgreSQL, and Alembic migrations
|
|
5
|
+
Project-URL: Homepage, https://github.com/splenwilz/fastapi-auth-starter
|
|
6
|
+
Project-URL: Documentation, https://github.com/splenwilz/fastapi-auth-starter#readme
|
|
7
|
+
Project-URL: Repository, https://github.com/splenwilz/fastapi-auth-starter
|
|
8
|
+
Project-URL: Issues, https://github.com/splenwilz/fastapi-auth-starter/issues
|
|
9
|
+
Author-email: Godswill William <godswill.wilz@gmail.com>
|
|
10
|
+
License: MIT
|
|
11
|
+
Keywords: alembic,authentication,fastapi,postgresql,starter,template
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Framework :: FastAPI
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.12
|
|
22
|
+
Requires-Dist: asyncpg>=0.30.0
|
|
23
|
+
Requires-Dist: authlib>=1.6.5
|
|
24
|
+
Requires-Dist: fastapi>=0.121.0
|
|
25
|
+
Requires-Dist: greenlet>=3.2.4
|
|
26
|
+
Requires-Dist: httpx>=0.28.1
|
|
27
|
+
Requires-Dist: pydantic-settings>=2.11.0
|
|
28
|
+
Requires-Dist: pydantic>=2.0.0
|
|
29
|
+
Requires-Dist: sqlalchemy>=2.0.44
|
|
30
|
+
Requires-Dist: uvicorn[standard]>=0.38.0
|
|
31
|
+
Requires-Dist: workos>=5.0.0
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: alembic>=1.17.1; extra == 'dev'
|
|
34
|
+
Requires-Dist: psycopg2-binary>=2.9.11; extra == 'dev'
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
# FastAPI Auth Starter
|
|
38
|
+
|
|
39
|
+
A clean architecture FastAPI project starter with PostgreSQL and Alembic migrations.
|
|
40
|
+
|
|
41
|
+
## Project Structure
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
fastapi_auth_starter/
|
|
45
|
+
├── app/
|
|
46
|
+
│ ├── __init__.py
|
|
47
|
+
│ ├── main.py # FastAPI application entry point
|
|
48
|
+
│ ├── api/
|
|
49
|
+
│ │ └── v1/
|
|
50
|
+
│ │ ├── api.py # API router aggregation
|
|
51
|
+
│ │ └── routes/
|
|
52
|
+
│ │ └── health.py # Health check endpoint
|
|
53
|
+
│ ├── core/
|
|
54
|
+
│ │ ├── config.py # Application configuration
|
|
55
|
+
│ │ └── database.py # Database connection and session management
|
|
56
|
+
│ ├── models/ # SQLAlchemy database models
|
|
57
|
+
│ ├── services/ # Business logic services
|
|
58
|
+
│ └── db/ # Database utilities
|
|
59
|
+
├── alembic/ # Database migration scripts
|
|
60
|
+
├── alembic.ini # Alembic configuration
|
|
61
|
+
├── pyproject.toml # Project dependencies (uv)
|
|
62
|
+
└── README.md
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Features
|
|
66
|
+
|
|
67
|
+
- ✅ Clean architecture with separation of concerns
|
|
68
|
+
- ✅ FastAPI with async SQLAlchemy
|
|
69
|
+
- ✅ PostgreSQL database support
|
|
70
|
+
- ✅ Alembic for database migrations
|
|
71
|
+
- ✅ Health check endpoint
|
|
72
|
+
- ✅ Dependency injection with FastAPI
|
|
73
|
+
- ✅ Environment-based configuration
|
|
74
|
+
|
|
75
|
+
## Prerequisites
|
|
76
|
+
|
|
77
|
+
- Python 3.12+ (3.13 for local dev, 3.12 for Vercel deployment)
|
|
78
|
+
- [uv](https://github.com/astral-sh/uv) package manager
|
|
79
|
+
- PostgreSQL database (local or remote)
|
|
80
|
+
|
|
81
|
+
## Setup
|
|
82
|
+
|
|
83
|
+
### 1. Install Dependencies
|
|
84
|
+
|
|
85
|
+
Dependencies are managed with `uv`. They are automatically installed when you run commands with `uv run`.
|
|
86
|
+
|
|
87
|
+
### 2. Configure Environment Variables
|
|
88
|
+
|
|
89
|
+
**Important:** Copy the example environment file and configure your settings:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
cp .env.example .env
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Then edit `.env` with your configuration:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
# Database Configuration
|
|
99
|
+
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/fastapi_auth
|
|
100
|
+
|
|
101
|
+
# API Configuration (optional - defaults are fine)
|
|
102
|
+
API_V1_PREFIX=/api/v1
|
|
103
|
+
PROJECT_NAME=FastAPI Auth Starter
|
|
104
|
+
VERSION=0.1.0
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
**Note:**
|
|
108
|
+
- The `.env` file is gitignored and should not be committed
|
|
109
|
+
- The application uses `asyncpg` for async operations, but Alembic uses `psycopg2` for migrations (sync driver)
|
|
110
|
+
- All sensitive configuration should be in `.env` file, not hardcoded
|
|
111
|
+
|
|
112
|
+
### 3. Initialize Database
|
|
113
|
+
|
|
114
|
+
First, ensure PostgreSQL is running and create the database:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
createdb fastapi_auth
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Or using PostgreSQL client:
|
|
121
|
+
|
|
122
|
+
```sql
|
|
123
|
+
CREATE DATABASE fastapi_auth;
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### 4. Run Migrations
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# Create initial migration (if needed)
|
|
130
|
+
uv run alembic revision --autogenerate -m "Initial migration"
|
|
131
|
+
|
|
132
|
+
# Apply migrations
|
|
133
|
+
uv run alembic upgrade head
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
## Running the Application
|
|
137
|
+
|
|
138
|
+
### Development Server
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
uv run uvicorn app.main:app --reload
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
The API will be available at:
|
|
145
|
+
- API: http://localhost:8000
|
|
146
|
+
- Docs: http://localhost:8000/docs
|
|
147
|
+
- ReDoc: http://localhost:8000/redoc
|
|
148
|
+
|
|
149
|
+
### Health Check
|
|
150
|
+
|
|
151
|
+
Test the health endpoint:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
curl http://localhost:8000/api/v1/health
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
Expected response:
|
|
158
|
+
```json
|
|
159
|
+
{
|
|
160
|
+
"status": "healthy",
|
|
161
|
+
"message": "Service is running"
|
|
162
|
+
}
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
## Development
|
|
166
|
+
|
|
167
|
+
### Adding New Routes
|
|
168
|
+
|
|
169
|
+
1. Create a new route file in `app/api/v1/routes/`
|
|
170
|
+
2. Import and include the router in `app/api/v1/api.py`
|
|
171
|
+
|
|
172
|
+
Example:
|
|
173
|
+
```python
|
|
174
|
+
# app/api/v1/routes/users.py
|
|
175
|
+
from fastapi import APIRouter
|
|
176
|
+
|
|
177
|
+
router = APIRouter(prefix="/users", tags=["users"])
|
|
178
|
+
|
|
179
|
+
@router.get("/")
|
|
180
|
+
async def get_users():
|
|
181
|
+
return {"users": []}
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
Then add to `app/api/v1/api.py`:
|
|
185
|
+
```python
|
|
186
|
+
from app.api.v1.routes import users
|
|
187
|
+
api_router.include_router(users.router)
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
### Adding Database Models
|
|
191
|
+
|
|
192
|
+
1. Create model in `app/models/`
|
|
193
|
+
2. Import in `app/models/__init__.py`
|
|
194
|
+
3. Import in `alembic/env.py` (for autogenerate)
|
|
195
|
+
|
|
196
|
+
Example:
|
|
197
|
+
```python
|
|
198
|
+
# app/models/user.py
|
|
199
|
+
from sqlalchemy import Column, Integer, String
|
|
200
|
+
from app.core.database import Base
|
|
201
|
+
|
|
202
|
+
class User(Base):
|
|
203
|
+
__tablename__ = "users"
|
|
204
|
+
|
|
205
|
+
id = Column(Integer, primary_key=True)
|
|
206
|
+
email = Column(String, unique=True, index=True)
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
### Creating Migrations
|
|
210
|
+
|
|
211
|
+
```bash
|
|
212
|
+
# Auto-generate migration from model changes
|
|
213
|
+
uv run alembic revision --autogenerate -m "Description of changes"
|
|
214
|
+
|
|
215
|
+
# Create empty migration
|
|
216
|
+
uv run alembic revision -m "Description of changes"
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
### Applying Migrations
|
|
220
|
+
|
|
221
|
+
```bash
|
|
222
|
+
# Apply all pending migrations
|
|
223
|
+
uv run alembic upgrade head
|
|
224
|
+
|
|
225
|
+
# Rollback one migration
|
|
226
|
+
uv run alembic downgrade -1
|
|
227
|
+
|
|
228
|
+
# Rollback to specific revision
|
|
229
|
+
uv run alembic downgrade <revision>
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
## Architecture
|
|
233
|
+
|
|
234
|
+
### Layers
|
|
235
|
+
|
|
236
|
+
- **API Layer** (`app/api/`): Route handlers, request/response models
|
|
237
|
+
- **Service Layer** (`app/services/`): Business logic, domain operations
|
|
238
|
+
- **Model Layer** (`app/models/`): SQLAlchemy database models
|
|
239
|
+
- **Core Layer** (`app/core/`): Configuration, database setup, utilities
|
|
240
|
+
|
|
241
|
+
### Dependency Injection
|
|
242
|
+
|
|
243
|
+
FastAPI's dependency injection is used throughout:
|
|
244
|
+
- Database sessions via `get_db()` dependency
|
|
245
|
+
- Configuration via `settings` object
|
|
246
|
+
- Custom dependencies in `app/core/dependencies.py` (create as needed)
|
|
247
|
+
|
|
248
|
+
## Deployment
|
|
249
|
+
|
|
250
|
+
### Vercel Deployment
|
|
251
|
+
|
|
252
|
+
1. **Install Dev Dependencies Locally:**
|
|
253
|
+
```bash
|
|
254
|
+
uv sync # Installs all dependencies including dev
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
2. **Set Environment Variables in Vercel:**
|
|
258
|
+
- Go to your project settings in Vercel
|
|
259
|
+
- Add `DATABASE_URL` environment variable with your PostgreSQL connection string
|
|
260
|
+
- Format: `postgresql+asyncpg://user:password@host:port/database`
|
|
261
|
+
|
|
262
|
+
3. **Deploy:**
|
|
263
|
+
```bash
|
|
264
|
+
vercel --prod
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
**Note:**
|
|
268
|
+
- Runtime dependencies don't include `psycopg2-binary` or `alembic` (only needed for local migrations)
|
|
269
|
+
- Python 3.12 is used (Vercel doesn't support 3.13 yet)
|
|
270
|
+
- Make sure to run migrations on your database before deploying
|
|
271
|
+
|
|
272
|
+
## References
|
|
273
|
+
|
|
274
|
+
- [FastAPI Documentation](https://fastapi.tiangolo.com/)
|
|
275
|
+
- [SQLAlchemy Async Documentation](https://docs.sqlalchemy.org/en/20/orm/extensions/asyncio.html)
|
|
276
|
+
- [Alembic Documentation](https://alembic.sqlalchemy.org/)
|
|
277
|
+
- [uv Documentation](https://github.com/astral-sh/uv)
|
|
278
|
+
- [Vercel Python Documentation](https://vercel.com/docs/functions/serverless-functions/runtimes/python)
|
|
279
|
+
|
|
280
|
+
## License
|
|
281
|
+
|
|
282
|
+
MIT
|
|
283
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
fastapi_auth_starter/__init__.py,sha256=_oe3ygpaxfGsEg-v3CcZdcQEJce2NX8Ogn7BsXdRFFQ,117
|
|
2
|
+
fastapi_auth_starter/cli.py,sha256=ejjdku4XxWfHGkRK6as4f9oxIcmMUHx6ILDzwNKv6HE,13047
|
|
3
|
+
fastapi_auth_starter-0.1.3.data/data/README.md,sha256=J6iz6y-Hz5ypL_hUureMUTL12Y-Yxcr6FPFhIO8HbcM,6121
|
|
4
|
+
fastapi_auth_starter-0.1.3.data/data/alembic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
|
|
5
|
+
fastapi_auth_starter-0.1.3.data/data/alembic/env.py,sha256=kOr7q2b4fx9VsXnCvlDWsIgPzMRMh-Hsybsveo3mk_4,3368
|
|
6
|
+
fastapi_auth_starter-0.1.3.data/data/alembic/script.py.mako,sha256=04kgeBtNMa4cCnG8CfQcKt6P6rnloIfj8wy0u_DBydM,704
|
|
7
|
+
fastapi_auth_starter-0.1.3.data/data/alembic/versions/279c472f4fd8_add_user_table.py,sha256=hqKI3mU27Spz-ayeRmKKDQK1xG2kTqdY5TXdfyaAMJs,1407
|
|
8
|
+
fastapi_auth_starter-0.1.3.data/data/alembic/versions/5f062b3648fa_change_user_id_from_uuid_to_string_for_.py,sha256=VxC5DiNuNQRMgsclrNVjLdu44DYHN0gGjmVD3lZxPCM,1075
|
|
9
|
+
fastapi_auth_starter-0.1.3.data/data/alembic/versions/8d275132562b_create_tasks_table.py,sha256=mzxHNFHkBvaR9CWFIB8Jz7hMkIY12gwBvnpGQsvDNf0,1548
|
|
10
|
+
fastapi_auth_starter-0.1.3.data/data/alembic.ini,sha256=NZUw5bwb1N8uElvXYq_38JdXRvJ8IX5p5KjxDmygFQE,5002
|
|
11
|
+
fastapi_auth_starter-0.1.3.data/data/app/__init__.py,sha256=1hdk85waF_8t_8V7rOZyGxLOlx1DSIqJXsuNDZfHBcw,67
|
|
12
|
+
fastapi_auth_starter-0.1.3.data/data/app/main.py,sha256=YxGowc7LDy3yCbyhYDMR9zVFRQoaOIgAtWqYKRiUJu4,2589
|
|
13
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/__init__.py,sha256=ptw7X8igNLTgUzcLgpKxcvpmpXdDAwS7sMDhIFxA10s,34
|
|
14
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/__init__.py,sha256=ASsNzolUr1IstIwbO38MCNJ1Xs51V0DKWAS4DfiwKh8,23
|
|
15
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/api.py,sha256=v9MKSftTFmYZcHOHW8HIk5U4G8GgplobSgB2B_GvnQg,641
|
|
16
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/__init__.py,sha256=dj0_ARCaRKEG74xN-RLe1XyAxyD34XzejIdeNxq7sGk,31
|
|
17
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/auth.py,sha256=guWqH4AIn1Cj0TAztD-DwE-Z56khTWrDbTsnbRZap_s,21198
|
|
18
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/health.py,sha256=K7eJ-ON0Fvdsljf0kPpA-zrbAt13P2sldQESeF4evKU,1304
|
|
19
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/task.py,sha256=kDRVwWXJqpTF63V2NTcV3Bxl5QdpPDNr04AP7UhmqDM,4613
|
|
20
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/routes/user.py,sha256=ICd5JOLK1exBPG2u9atLATlcL-zDzmCmMpCe_KYJYwc,4241
|
|
21
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/__init__.py,sha256=6XGfEtUUQImTmeXLWsd-fNa1tdJmwFxkGGhyBoK45ms,188
|
|
22
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/auth.py,sha256=JaZfjCl1wJpB69u5cvUP4ADOD8-ZXm5Mx1wBQRuMC1Q,8395
|
|
23
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/task.py,sha256=mmuUTw4IIb_fDVJPV4PX1IGc4WBtOszxd2J7NjSsjO0,2200
|
|
24
|
+
fastapi_auth_starter-0.1.3.data/data/app/api/v1/schemas/user.py,sha256=MTR_a7o_oMCvYNSkU4g6cQc2Fh_rPb029yx3qgG30Gw,4212
|
|
25
|
+
fastapi_auth_starter-0.1.3.data/data/app/core/__init__.py,sha256=4VnyQepM4vafTCgsrU2Yx5YjDD5iCsZe148g8bvlwh0,54
|
|
26
|
+
fastapi_auth_starter-0.1.3.data/data/app/core/config.py,sha256=8yvriWsF7FWCuhZI97R2sJJLfTXjHoHEkajHurDejlM,4055
|
|
27
|
+
fastapi_auth_starter-0.1.3.data/data/app/core/database.py,sha256=sXBnCQSwySpOfxCC7PF9FP-plGgH1bOpIkEcHXtz6sE,4392
|
|
28
|
+
fastapi_auth_starter-0.1.3.data/data/app/core/dependencies.py,sha256=U7ekZ3ZzFqY__0nDlMGrlSRjY-kTPn0uI2P5jSa_P-Q,5554
|
|
29
|
+
fastapi_auth_starter-0.1.3.data/data/app/core/exceptions.py,sha256=NyvRj0hgBPe4UQBTuN_T6n6h9jpDenWtYkHgqSpimL4,252
|
|
30
|
+
fastapi_auth_starter-0.1.3.data/data/app/db/__init__.py,sha256=C6seBO0BKQ1nIOWXkEo2l-kzGTNDbPIAZ3OgBv2X_WA,40
|
|
31
|
+
fastapi_auth_starter-0.1.3.data/data/app/models/__init__.py,sha256=BYi70T2uNqed6MshLHEQzlQjXq-lv3S9RmdCrQxVFtQ,344
|
|
32
|
+
fastapi_auth_starter-0.1.3.data/data/app/models/task.py,sha256=SQCjssmEpxES6XGQH2jv3FuLQnpo3AXYMEdEj6dN1UA,2084
|
|
33
|
+
fastapi_auth_starter-0.1.3.data/data/app/models/user.py,sha256=mA1xL_Mp9N3uaeEQRipEFPCrqudckg72hgn0OWCvxow,1899
|
|
34
|
+
fastapi_auth_starter-0.1.3.data/data/app/services/__init__.py,sha256=jJnQMl8R2BRzLy0qlMAb1W9gqN4aPMWctFZ6UXaw3O8,147
|
|
35
|
+
fastapi_auth_starter-0.1.3.data/data/app/services/auth.py,sha256=0dIt9Xevpvk5GA1jDcSrnLRTzjurj_Vi0OusIpVXJGc,17221
|
|
36
|
+
fastapi_auth_starter-0.1.3.data/data/app/services/task.py,sha256=ue-qzZFwxhmeV6B0X3X7ogwK4c3r_rhkoAqp_7T60-c,5321
|
|
37
|
+
fastapi_auth_starter-0.1.3.data/data/app/services/user.py,sha256=Vs2vguWAmfB_Don8visYDAez84sq0ThhK3KtxPsz4Yc,4293
|
|
38
|
+
fastapi_auth_starter-0.1.3.data/data/pyproject.toml,sha256=hTM80R7ihIGVfFFSRongnjicyWkjk3D_KYsXtEug47o,2620
|
|
39
|
+
fastapi_auth_starter-0.1.3.data/data/runtime.txt,sha256=PAbx-nAMyJmFpY8DnG5bSpc_xS4sULT7CSwPietTLzo,13
|
|
40
|
+
fastapi_auth_starter-0.1.3.data/data/vercel.json,sha256=zWpTUtGSFo8m7mIWOGbiZSRKkRIwNh-31LKihMblAcQ,235
|
|
41
|
+
fastapi_auth_starter-0.1.3.dist-info/METADATA,sha256=mumUaGb6Zzb4HfAO6gYtDmqHbUOMIaCZP5o2QkXPn8k,7714
|
|
42
|
+
fastapi_auth_starter-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
43
|
+
fastapi_auth_starter-0.1.3.dist-info/entry_points.txt,sha256=os8s60iu3RRRA9TcyEcwWiLKTtK0w63zUMDyJ-yTU4U,71
|
|
44
|
+
fastapi_auth_starter-0.1.3.dist-info/RECORD,,
|