fastapi-forge-cli 0.1.0__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_forge/__init__.py +7 -0
- fastapi_forge/__main__.py +6 -0
- fastapi_forge/cli.py +211 -0
- fastapi_forge/templates/with_rbac/Dockerfile +31 -0
- fastapi_forge/templates/with_rbac/README.md +121 -0
- fastapi_forge/templates/with_rbac/_dockerignore +16 -0
- fastapi_forge/templates/with_rbac/_github/workflows/ci.yml +23 -0
- fastapi_forge/templates/with_rbac/_gitignore +19 -0
- fastapi_forge/templates/with_rbac/alembic/README +1 -0
- fastapi_forge/templates/with_rbac/alembic/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/alembic/env.py +51 -0
- fastapi_forge/templates/with_rbac/alembic/script.py.mako +28 -0
- fastapi_forge/templates/with_rbac/alembic/versions/2255ba4f9604_fresh_baseline.py +204 -0
- fastapi_forge/templates/with_rbac/alembic.ini +35 -0
- fastapi_forge/templates/with_rbac/app/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/api/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/api/v1/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/api/v1/api.py +34 -0
- fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/repository.py +38 -0
- fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/router.py +50 -0
- fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/schema.py +21 -0
- fastapi_forge/templates/with_rbac/app/api/v1/auth/__init__.py +0 -0
- fastapi_forge/templates/with_rbac/app/api/v1/auth/repository.py +179 -0
- fastapi_forge/templates/with_rbac/app/api/v1/auth/router.py +209 -0
- fastapi_forge/templates/with_rbac/app/api/v1/auth/schema.py +98 -0
- fastapi_forge/templates/with_rbac/app/api/v1/auth/service.py +383 -0
- fastapi_forge/templates/with_rbac/app/api/v1/health/__init__.py +3 -0
- fastapi_forge/templates/with_rbac/app/api/v1/health/router.py +23 -0
- fastapi_forge/templates/with_rbac/app/api/v1/health/schema.py +5 -0
- fastapi_forge/templates/with_rbac/app/api/v1/health/service.py +25 -0
- fastapi_forge/templates/with_rbac/app/api/v1/permissions/__init__.py +0 -0
- fastapi_forge/templates/with_rbac/app/api/v1/permissions/repository.py +80 -0
- fastapi_forge/templates/with_rbac/app/api/v1/permissions/router.py +151 -0
- fastapi_forge/templates/with_rbac/app/api/v1/permissions/schema.py +40 -0
- fastapi_forge/templates/with_rbac/app/api/v1/permissions/service.py +156 -0
- fastapi_forge/templates/with_rbac/app/api/v1/roles/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/api/v1/roles/repository.py +161 -0
- fastapi_forge/templates/with_rbac/app/api/v1/roles/router.py +169 -0
- fastapi_forge/templates/with_rbac/app/api/v1/roles/schema.py +51 -0
- fastapi_forge/templates/with_rbac/app/api/v1/roles/service.py +319 -0
- fastapi_forge/templates/with_rbac/app/api/v1/schema.py +7 -0
- fastapi_forge/templates/with_rbac/app/api/v1/users/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/api/v1/users/repository.py +181 -0
- fastapi_forge/templates/with_rbac/app/api/v1/users/router.py +146 -0
- fastapi_forge/templates/with_rbac/app/api/v1/users/schema.py +112 -0
- fastapi_forge/templates/with_rbac/app/api/v1/users/service.py +291 -0
- fastapi_forge/templates/with_rbac/app/core/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/core/config.py +131 -0
- fastapi_forge/templates/with_rbac/app/core/dependencies.py +131 -0
- fastapi_forge/templates/with_rbac/app/core/exceptions.py +162 -0
- fastapi_forge/templates/with_rbac/app/core/logging.py +231 -0
- fastapi_forge/templates/with_rbac/app/core/middleware.py +188 -0
- fastapi_forge/templates/with_rbac/app/core/responses.py +108 -0
- fastapi_forge/templates/with_rbac/app/core/security.py +115 -0
- fastapi_forge/templates/with_rbac/app/db/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/db/base.py +5 -0
- fastapi_forge/templates/with_rbac/app/db/models/__init__.py +16 -0
- fastapi_forge/templates/with_rbac/app/db/models/audit_log.py +58 -0
- fastapi_forge/templates/with_rbac/app/db/models/auth_token.py +72 -0
- fastapi_forge/templates/with_rbac/app/db/models/notification.py +49 -0
- fastapi_forge/templates/with_rbac/app/db/models/permission.py +174 -0
- fastapi_forge/templates/with_rbac/app/db/models/revoked_token.py +21 -0
- fastapi_forge/templates/with_rbac/app/db/models/user.py +53 -0
- fastapi_forge/templates/with_rbac/app/db/schemas/__init__.py +8 -0
- fastapi_forge/templates/with_rbac/app/db/schemas/common.py +70 -0
- fastapi_forge/templates/with_rbac/app/db/schemas/names.py +9 -0
- fastapi_forge/templates/with_rbac/app/db/session.py +86 -0
- fastapi_forge/templates/with_rbac/app/helper/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/helper/pagination_helper.py +44 -0
- fastapi_forge/templates/with_rbac/app/helper/search.py +51 -0
- fastapi_forge/templates/with_rbac/app/helper/sorting.py +77 -0
- fastapi_forge/templates/with_rbac/app/main.py +66 -0
- fastapi_forge/templates/with_rbac/app/repositories/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/repositories/base.py +347 -0
- fastapi_forge/templates/with_rbac/app/services/__init__.py +1 -0
- fastapi_forge/templates/with_rbac/app/services/audit.py +58 -0
- fastapi_forge/templates/with_rbac/app/services/email.py +118 -0
- fastapi_forge/templates/with_rbac/app/services/notification.py +82 -0
- fastapi_forge/templates/with_rbac/app/templates/email/notification.html +7 -0
- fastapi_forge/templates/with_rbac/app/templates/email/password_reset.html +7 -0
- fastapi_forge/templates/with_rbac/app/templates/email/verify_email.html +7 -0
- fastapi_forge/templates/with_rbac/app/templates/email/welcome.html +6 -0
- fastapi_forge/templates/with_rbac/app/utils/casing.py +31 -0
- fastapi_forge/templates/with_rbac/compose.yaml +33 -0
- fastapi_forge/templates/with_rbac/pyproject.toml +14 -0
- fastapi_forge/templates/with_rbac/requirements-dev.txt +5 -0
- fastapi_forge/templates/with_rbac/requirements.txt +16 -0
- fastapi_forge/templates/with_rbac/sample.env +42 -0
- fastapi_forge/templates/with_rbac/scripts/seed_first_user.py +166 -0
- fastapi_forge/templates/with_rbac/tests/test_audit.py +42 -0
- fastapi_forge/templates/with_rbac/tests/test_config.py +27 -0
- fastapi_forge/templates/with_rbac/tests/test_generator.py +20 -0
- fastapi_forge/templates/with_rbac/tests/test_permissions.py +36 -0
- fastapi_forge/templates/with_rbac/tests/test_security.py +68 -0
- fastapi_forge/templates/without_rbac/Dockerfile +31 -0
- fastapi_forge/templates/without_rbac/README.md +106 -0
- fastapi_forge/templates/without_rbac/_dockerignore +16 -0
- fastapi_forge/templates/without_rbac/_github/workflows/ci.yml +23 -0
- fastapi_forge/templates/without_rbac/_gitignore +19 -0
- fastapi_forge/templates/without_rbac/alembic/README +1 -0
- fastapi_forge/templates/without_rbac/alembic/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/alembic/env.py +51 -0
- fastapi_forge/templates/without_rbac/alembic/script.py.mako +28 -0
- fastapi_forge/templates/without_rbac/alembic/versions/2255ba4f9604_fresh_baseline.py +125 -0
- fastapi_forge/templates/without_rbac/alembic.ini +35 -0
- fastapi_forge/templates/without_rbac/app/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/api/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/api/v1/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/api/v1/api.py +29 -0
- fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/repository.py +38 -0
- fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/router.py +45 -0
- fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/schema.py +21 -0
- fastapi_forge/templates/without_rbac/app/api/v1/auth/__init__.py +0 -0
- fastapi_forge/templates/without_rbac/app/api/v1/auth/repository.py +127 -0
- fastapi_forge/templates/without_rbac/app/api/v1/auth/router.py +207 -0
- fastapi_forge/templates/without_rbac/app/api/v1/auth/schema.py +96 -0
- fastapi_forge/templates/without_rbac/app/api/v1/auth/service.py +373 -0
- fastapi_forge/templates/without_rbac/app/api/v1/health/__init__.py +3 -0
- fastapi_forge/templates/without_rbac/app/api/v1/health/router.py +23 -0
- fastapi_forge/templates/without_rbac/app/api/v1/health/schema.py +5 -0
- fastapi_forge/templates/without_rbac/app/api/v1/health/service.py +25 -0
- fastapi_forge/templates/without_rbac/app/api/v1/schema.py +7 -0
- fastapi_forge/templates/without_rbac/app/api/v1/users/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/api/v1/users/repository.py +69 -0
- fastapi_forge/templates/without_rbac/app/api/v1/users/router.py +94 -0
- fastapi_forge/templates/without_rbac/app/api/v1/users/schema.py +50 -0
- fastapi_forge/templates/without_rbac/app/api/v1/users/service.py +92 -0
- fastapi_forge/templates/without_rbac/app/core/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/core/config.py +131 -0
- fastapi_forge/templates/without_rbac/app/core/dependencies.py +71 -0
- fastapi_forge/templates/without_rbac/app/core/exceptions.py +162 -0
- fastapi_forge/templates/without_rbac/app/core/logging.py +231 -0
- fastapi_forge/templates/without_rbac/app/core/middleware.py +188 -0
- fastapi_forge/templates/without_rbac/app/core/responses.py +108 -0
- fastapi_forge/templates/without_rbac/app/core/security.py +115 -0
- fastapi_forge/templates/without_rbac/app/db/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/db/base.py +5 -0
- fastapi_forge/templates/without_rbac/app/db/models/__init__.py +10 -0
- fastapi_forge/templates/without_rbac/app/db/models/audit_log.py +58 -0
- fastapi_forge/templates/without_rbac/app/db/models/auth_token.py +72 -0
- fastapi_forge/templates/without_rbac/app/db/models/notification.py +49 -0
- fastapi_forge/templates/without_rbac/app/db/models/revoked_token.py +21 -0
- fastapi_forge/templates/without_rbac/app/db/models/user.py +33 -0
- fastapi_forge/templates/without_rbac/app/db/schemas/__init__.py +8 -0
- fastapi_forge/templates/without_rbac/app/db/schemas/common.py +70 -0
- fastapi_forge/templates/without_rbac/app/db/schemas/names.py +5 -0
- fastapi_forge/templates/without_rbac/app/db/session.py +86 -0
- fastapi_forge/templates/without_rbac/app/helper/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/helper/pagination_helper.py +44 -0
- fastapi_forge/templates/without_rbac/app/helper/search.py +51 -0
- fastapi_forge/templates/without_rbac/app/helper/sorting.py +77 -0
- fastapi_forge/templates/without_rbac/app/main.py +66 -0
- fastapi_forge/templates/without_rbac/app/repositories/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/repositories/base.py +347 -0
- fastapi_forge/templates/without_rbac/app/services/__init__.py +1 -0
- fastapi_forge/templates/without_rbac/app/services/audit.py +58 -0
- fastapi_forge/templates/without_rbac/app/services/email.py +118 -0
- fastapi_forge/templates/without_rbac/app/services/notification.py +82 -0
- fastapi_forge/templates/without_rbac/app/templates/email/notification.html +7 -0
- fastapi_forge/templates/without_rbac/app/templates/email/password_reset.html +7 -0
- fastapi_forge/templates/without_rbac/app/templates/email/verify_email.html +7 -0
- fastapi_forge/templates/without_rbac/app/templates/email/welcome.html +6 -0
- fastapi_forge/templates/without_rbac/app/utils/casing.py +31 -0
- fastapi_forge/templates/without_rbac/compose.yaml +33 -0
- fastapi_forge/templates/without_rbac/pyproject.toml +14 -0
- fastapi_forge/templates/without_rbac/requirements-dev.txt +5 -0
- fastapi_forge/templates/without_rbac/requirements.txt +16 -0
- fastapi_forge/templates/without_rbac/sample.env +42 -0
- fastapi_forge/templates/without_rbac/scripts/seed_first_user.py +51 -0
- fastapi_forge/templates/without_rbac/tests/test_audit.py +42 -0
- fastapi_forge/templates/without_rbac/tests/test_config.py +27 -0
- fastapi_forge/templates/without_rbac/tests/test_generator.py +20 -0
- fastapi_forge/templates/without_rbac/tests/test_security.py +68 -0
- fastapi_forge_cli-0.1.0.dist-info/METADATA +225 -0
- fastapi_forge_cli-0.1.0.dist-info/RECORD +181 -0
- fastapi_forge_cli-0.1.0.dist-info/WHEEL +5 -0
- fastapi_forge_cli-0.1.0.dist-info/entry_points.txt +2 -0
- fastapi_forge_cli-0.1.0.dist-info/licenses/LICENSE +18 -0
- fastapi_forge_cli-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
fastapi_forge/__init__.py,sha256=dmCva95KWEgpkWEttNqA5nIUR4HydIZ6oPs9JiKwsJ0,209
|
|
2
|
+
fastapi_forge/__main__.py,sha256=bRGTtrizUip3aDLyqTe-rAGplI6unpI8tllwaP6q-EA,151
|
|
3
|
+
fastapi_forge/cli.py,sha256=oj3LoQ9GCFCEb579ziGNXGIznsR0A7BMNVGtE9pt-8o,6651
|
|
4
|
+
fastapi_forge/templates/with_rbac/Dockerfile,sha256=S8DP0uMSeUfvmoT5WavmNILM9vXT0yCBNrfNIFX-aC0,1008
|
|
5
|
+
fastapi_forge/templates/with_rbac/README.md,sha256=Enu7jAtfg3PZ5Qwx3d7P1_awLNovw3qdTRCJyN0MyTo,4081
|
|
6
|
+
fastapi_forge/templates/with_rbac/_dockerignore,sha256=OuDT93w-aG1j5DQNEANTeFSTy9Sc32PgpxBxX68TMdU,127
|
|
7
|
+
fastapi_forge/templates/with_rbac/_gitignore,sha256=Up9tGI4u2aYkkvt8G_4gSn606zLB5JEF0np9U5PH9e0,190
|
|
8
|
+
fastapi_forge/templates/with_rbac/alembic.ini,sha256=gfLg9hmE4gt-ChkEWjUHN-8Wej4wfh_emJIDmGME91c,548
|
|
9
|
+
fastapi_forge/templates/with_rbac/compose.yaml,sha256=c4taTTxUzA4l36mH3cCLR42JsXRO27DKN37PQZrk7JU,718
|
|
10
|
+
fastapi_forge/templates/with_rbac/pyproject.toml,sha256=iMtdyx45IQCd5BFG9j5NMh76YqtQzeFE00lULUhSh3s,266
|
|
11
|
+
fastapi_forge/templates/with_rbac/requirements-dev.txt,sha256=aPsLYb1Yjemfl5kaxlWyu4F4CXPGQBsjV2FnFTHmxG8,79
|
|
12
|
+
fastapi_forge/templates/with_rbac/requirements.txt,sha256=PtchIkfAkxum3I1mIhFtMwb2zMAnVd6t5T-N-ngUFO0,325
|
|
13
|
+
fastapi_forge/templates/with_rbac/sample.env,sha256=d9lNC8Ui3cNHfMDK-GyGkvcZ8mqnoENpcYYzgoUn1uo,837
|
|
14
|
+
fastapi_forge/templates/with_rbac/_github/workflows/ci.yml,sha256=95uCyOTtxZK8y7WaUT6Kg3R2dfFtYP55p1vjOMQVcHE,407
|
|
15
|
+
fastapi_forge/templates/with_rbac/alembic/README,sha256=6VtZJQ7R5DsP8u6itQlzDNkmcdsTMJwjFpUh7HH-6Hs,100
|
|
16
|
+
fastapi_forge/templates/with_rbac/alembic/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
17
|
+
fastapi_forge/templates/with_rbac/alembic/env.py,sha256=ogIRlWo-IeQkppcAZH7upEVf4x5sSJ4OQ3dZC_mPg34,1347
|
|
18
|
+
fastapi_forge/templates/with_rbac/alembic/script.py.mako,sha256=FsTYq2edOE5lMEitMNb54DUGBw3U1M6PaMJSR4XMRcM,730
|
|
19
|
+
fastapi_forge/templates/with_rbac/alembic/versions/2255ba4f9604_fresh_baseline.py,sha256=5RrW4gPTWLdU1uXxBVvS5vTTftIypLFY52Npbu8kAis,9552
|
|
20
|
+
fastapi_forge/templates/with_rbac/app/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
21
|
+
fastapi_forge/templates/with_rbac/app/main.py,sha256=ZQPMpnTSdN6-_EHRlJ0es_haOxYlHdetU84Udiac9xE,2105
|
|
22
|
+
fastapi_forge/templates/with_rbac/app/api/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
23
|
+
fastapi_forge/templates/with_rbac/app/api/v1/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
24
|
+
fastapi_forge/templates/with_rbac/app/api/v1/api.py,sha256=d8Kg5WNsw8mTEmPMCkaKM8IeBXZuBeAaKkGrV8Efkl8,1227
|
|
25
|
+
fastapi_forge/templates/with_rbac/app/api/v1/schema.py,sha256=nlsmRC9QrV80yHOv1X7vtxKmCLj8aqtj74KpclJ17SU,165
|
|
26
|
+
fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
27
|
+
fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/repository.py,sha256=ypqOPNsdUoebyQEIDg7CRB59ij_vRWXj92qrMObh_yI,1268
|
|
28
|
+
fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/router.py,sha256=YP2OL68nng8aPOHGpbvcaWwqt85OJDjZbSOdBpeKJp8,1682
|
|
29
|
+
fastapi_forge/templates/with_rbac/app/api/v1/audit_logs/schema.py,sha256=BGK5QC6TNMPPAmvuDjfqaQBeQckP3hi8CnV6-0XTlro,562
|
|
30
|
+
fastapi_forge/templates/with_rbac/app/api/v1/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
fastapi_forge/templates/with_rbac/app/api/v1/auth/repository.py,sha256=yvwGAY5cIuZa4rYgG4O978ebGZvcsYNI4Jl7nc9-CrU,6636
|
|
32
|
+
fastapi_forge/templates/with_rbac/app/api/v1/auth/router.py,sha256=xWmRQ1Qbbs6dn7uBLNCj53b6jnNxVINiPlDIVMlpss8,7012
|
|
33
|
+
fastapi_forge/templates/with_rbac/app/api/v1/auth/schema.py,sha256=NN1zepsu6y0iO8OYHRzpJZZtjWqeSH4_bgfhg4udWMM,3010
|
|
34
|
+
fastapi_forge/templates/with_rbac/app/api/v1/auth/service.py,sha256=LxOgO5Ny1YmRamd5ikzuOs0nz2WqbreO-3Rn_fP6oAY,14817
|
|
35
|
+
fastapi_forge/templates/with_rbac/app/api/v1/health/__init__.py,sha256=SiJehmHIzCnAxarhKPuhbX3t01EE1flbLVAPqyyxlvU,66
|
|
36
|
+
fastapi_forge/templates/with_rbac/app/api/v1/health/router.py,sha256=GCivg159zFiiKdMvKqiHWfyfnpp5B5lag3ZMSDDAleU,560
|
|
37
|
+
fastapi_forge/templates/with_rbac/app/api/v1/health/schema.py,sha256=c2ZGOlpPvq6Q1ShjseH4IcdqZEPEp0xYeRnpTG1x2Ew,92
|
|
38
|
+
fastapi_forge/templates/with_rbac/app/api/v1/health/service.py,sha256=qx_haKyBXrMX9g_o6uZlbyM-pitXfzSGXWujTi7PMNA,768
|
|
39
|
+
fastapi_forge/templates/with_rbac/app/api/v1/permissions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
fastapi_forge/templates/with_rbac/app/api/v1/permissions/repository.py,sha256=zyKS_Hh9GE1Ot4B7LHy9HHiXl_7VyelnNY4cfViUcgE,2618
|
|
41
|
+
fastapi_forge/templates/with_rbac/app/api/v1/permissions/router.py,sha256=IpQHIXRTCk6x7D-dEb5k7wS8FKkIrIAh2YGzETaO0Iw,4957
|
|
42
|
+
fastapi_forge/templates/with_rbac/app/api/v1/permissions/schema.py,sha256=EZ6PpsT8bkymKiKM1XvkrgMWSo7RiHvG7_EsMTdD4BU,929
|
|
43
|
+
fastapi_forge/templates/with_rbac/app/api/v1/permissions/service.py,sha256=bVwDNW0Wk9gkbkSDGRvUzZ0U1V7GYtPLctaj6TjJ2gk,5763
|
|
44
|
+
fastapi_forge/templates/with_rbac/app/api/v1/roles/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
45
|
+
fastapi_forge/templates/with_rbac/app/api/v1/roles/repository.py,sha256=Ne3u4p3SXBjPNdC5TIA2Pce_da7tWdYR7ocL6Yez34k,5305
|
|
46
|
+
fastapi_forge/templates/with_rbac/app/api/v1/roles/router.py,sha256=4Mzz2Z546Reaqp7DJZUjvtxfaRxxB0A15a7LhJmt7AA,5811
|
|
47
|
+
fastapi_forge/templates/with_rbac/app/api/v1/roles/schema.py,sha256=AdhGZc_C9UQdq7sfJ_zLr3h7sjjlGVCnTW6mEwzO59c,1239
|
|
48
|
+
fastapi_forge/templates/with_rbac/app/api/v1/roles/service.py,sha256=60Ku-5WxsPsYp3wI4vk6bt4doFyvh6UHL9_ZpsxqO-Q,12444
|
|
49
|
+
fastapi_forge/templates/with_rbac/app/api/v1/users/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
50
|
+
fastapi_forge/templates/with_rbac/app/api/v1/users/repository.py,sha256=UK4yhkji1qrUKGRS3VPZNDdtt4VkPUm1RBT3gTLiNd0,6283
|
|
51
|
+
fastapi_forge/templates/with_rbac/app/api/v1/users/router.py,sha256=qSVp0_fbReME4Uy6EElmWsM5QZb2LeNtAmUYSaPS0yY,4542
|
|
52
|
+
fastapi_forge/templates/with_rbac/app/api/v1/users/schema.py,sha256=gahgnfEGeX8u7hGAFeZMTDV2kXRyiTrbcazfeS42LBE,3992
|
|
53
|
+
fastapi_forge/templates/with_rbac/app/api/v1/users/service.py,sha256=RqrSRDTQ5wAt7yecDEiRMBR5fnJIoRCGteMjaK0yiU8,11230
|
|
54
|
+
fastapi_forge/templates/with_rbac/app/core/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
55
|
+
fastapi_forge/templates/with_rbac/app/core/config.py,sha256=V_gchI2EwXgsJMjlwGVabF-tAaXldDaOyg9wJCQMMxA,4156
|
|
56
|
+
fastapi_forge/templates/with_rbac/app/core/dependencies.py,sha256=N_mnMK-RHbLIyANL7OrfeFKrnz1afU-HGaZINvbyPek,4073
|
|
57
|
+
fastapi_forge/templates/with_rbac/app/core/exceptions.py,sha256=QJ_5ejrdS7K_F9sv6aXezlbdPeArJg2sE4nzMusRaEU,5813
|
|
58
|
+
fastapi_forge/templates/with_rbac/app/core/logging.py,sha256=EWXisZE6tJ__teZAlt9th0i50U8Kng3NFnYNLWWiojM,8538
|
|
59
|
+
fastapi_forge/templates/with_rbac/app/core/middleware.py,sha256=D96EvBps804KC-z1O1KIIECiLcWFapBcjytRNfFvJ6Y,7371
|
|
60
|
+
fastapi_forge/templates/with_rbac/app/core/responses.py,sha256=TkV_ioUoctrcOSWaRmkrNELeFgc_q9ueudhgxyl00xo,3173
|
|
61
|
+
fastapi_forge/templates/with_rbac/app/core/security.py,sha256=apBnWLXrrYyMZw50oR-QjhgrigPrBcrmSoEL3ZjJhOA,4068
|
|
62
|
+
fastapi_forge/templates/with_rbac/app/db/__init__.py,sha256=Eo4qZjFu7mJWJ0ZMB1F6p7eXswpVZDxdgA0shdLdn8o,25
|
|
63
|
+
fastapi_forge/templates/with_rbac/app/db/base.py,sha256=0LXS0WlLr1KAHGZng46SmUwJam8m2AxVDBqK1Yzwx8w,88
|
|
64
|
+
fastapi_forge/templates/with_rbac/app/db/session.py,sha256=U_1fR4cS-Bldlz8ZjdauQK9Bcrxs2rOIBUQhLEW-aHY,2545
|
|
65
|
+
fastapi_forge/templates/with_rbac/app/db/models/__init__.py,sha256=P6GvwMacQwxXPnF5PY2nIjyMNpMhwmJcWD33pd8nMpk,438
|
|
66
|
+
fastapi_forge/templates/with_rbac/app/db/models/audit_log.py,sha256=sz56w6-dSDDjFSi27pWoQJY0OcUcjvzmBXGItNliTt8,2880
|
|
67
|
+
fastapi_forge/templates/with_rbac/app/db/models/auth_token.py,sha256=-_VRtDT-X0NqwQFTlYa7HwmrKvEqdtKudv50eIlxSV0,3018
|
|
68
|
+
fastapi_forge/templates/with_rbac/app/db/models/notification.py,sha256=KRCGARaUpkCxNSL26jyZbtYIYRxNbdj-PIWBudgmT8g,1839
|
|
69
|
+
fastapi_forge/templates/with_rbac/app/db/models/permission.py,sha256=IiWxvY-3kb5wZQRQRtnZ-FU079p_sYniS-wFzUBSom4,5126
|
|
70
|
+
fastapi_forge/templates/with_rbac/app/db/models/revoked_token.py,sha256=su0-RQztpFcGbLrONOpGFWhChGUNoa1y-DKzvn5EivU,663
|
|
71
|
+
fastapi_forge/templates/with_rbac/app/db/models/user.py,sha256=Pv2Bdc-LBjvcQxGLp5PsQ3GM3UiRUQXFfhgFQT7MkeQ,1939
|
|
72
|
+
fastapi_forge/templates/with_rbac/app/db/schemas/__init__.py,sha256=QVY86RBOAri0LxEC9DyMSgFc-_HHKqUZ9o1sgtP7Rv0,192
|
|
73
|
+
fastapi_forge/templates/with_rbac/app/db/schemas/common.py,sha256=-uvgcJ5s7PG7pNn0lSS7FuO_HBihtfnJDexhSdB4Md0,1966
|
|
74
|
+
fastapi_forge/templates/with_rbac/app/db/schemas/names.py,sha256=LBCgxCAOnzBO6Wde1bMrf2y9qhHlrEkfDlUH97PtrJ8,130
|
|
75
|
+
fastapi_forge/templates/with_rbac/app/helper/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
76
|
+
fastapi_forge/templates/with_rbac/app/helper/pagination_helper.py,sha256=R0IvEqpxG0jvGaLvMjlh5haiEqx4l0O_In0TSBPULH4,1308
|
|
77
|
+
fastapi_forge/templates/with_rbac/app/helper/search.py,sha256=AVO9NzHQCczKk3kOO9ERetDwWJgkd1sJLXmWJ2L4XCw,1405
|
|
78
|
+
fastapi_forge/templates/with_rbac/app/helper/sorting.py,sha256=YWaocA75xkg4dHig5mUBj7Q1QSE4KYrsgNjhYnIPI5A,2155
|
|
79
|
+
fastapi_forge/templates/with_rbac/app/repositories/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
80
|
+
fastapi_forge/templates/with_rbac/app/repositories/base.py,sha256=n4rnHSbr1O-ZuzMyfErCf4ucRzGfWsyzUZxpH7aMOf8,12865
|
|
81
|
+
fastapi_forge/templates/with_rbac/app/services/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
82
|
+
fastapi_forge/templates/with_rbac/app/services/audit.py,sha256=pbhsNwCeKwx-ePZpLUeGA1wFynsMYadDij7KqGMAikc,1796
|
|
83
|
+
fastapi_forge/templates/with_rbac/app/services/email.py,sha256=rLmYKKOtOiLad5rrdRF-vQti9QVla7qC_9uwpUsVvuk,4154
|
|
84
|
+
fastapi_forge/templates/with_rbac/app/services/notification.py,sha256=QNsyuxxwXgrC1X_6Dbowj1a-CzKiiTJFoeVd9VLwXCw,2693
|
|
85
|
+
fastapi_forge/templates/with_rbac/app/templates/email/notification.html,sha256=SfBn6_v1EMpiL3nSQ3yzqxcqe7ZrdVIxbUfE6uSKRkc,110
|
|
86
|
+
fastapi_forge/templates/with_rbac/app/templates/email/password_reset.html,sha256=mfLwT_Xh0vlfOtzHhjvIZpgbteu_0ZPwEmV7USS-o3E,176
|
|
87
|
+
fastapi_forge/templates/with_rbac/app/templates/email/verify_email.html,sha256=erig0DOPoWm57sUyrFfT0Zt66fDKe9iQr-_byVwfyKc,181
|
|
88
|
+
fastapi_forge/templates/with_rbac/app/templates/email/welcome.html,sha256=ZEsNbRycpzsCWyDWbYXv3fKTIN7S-mUCx16xq2EQMLQ,104
|
|
89
|
+
fastapi_forge/templates/with_rbac/app/utils/casing.py,sha256=4VKk9QMueN8gMO0rWfeIyM7gfxZCdig3oUWooMuKVDc,997
|
|
90
|
+
fastapi_forge/templates/with_rbac/scripts/seed_first_user.py,sha256=qef4fH2CoAFm9X5OHl1FliIUux0RkwaPA39aaxILMpY,5607
|
|
91
|
+
fastapi_forge/templates/with_rbac/tests/test_audit.py,sha256=cxfbZEY1XJGx1z2Oq95CV91c4Kg30DR3aEvilsup9e8,1035
|
|
92
|
+
fastapi_forge/templates/with_rbac/tests/test_config.py,sha256=TsjsaGDv1PzHv50wXTskss4H-BZvvvTQWF-LLO4DsI0,754
|
|
93
|
+
fastapi_forge/templates/with_rbac/tests/test_generator.py,sha256=Ry_9Rrt0Rv8j2agz4daFIwzKfjpUUXgz6PgeXrI8-qA,675
|
|
94
|
+
fastapi_forge/templates/with_rbac/tests/test_permissions.py,sha256=KuiOVghN3QztVgL0EZth2s4KrX5lJpWjvHjV022DkZA,1137
|
|
95
|
+
fastapi_forge/templates/with_rbac/tests/test_security.py,sha256=fmRHOu2oadg9moLyg_hnz3abUYCRRKKj_jj_QcEY2Sc,1784
|
|
96
|
+
fastapi_forge/templates/without_rbac/Dockerfile,sha256=S8DP0uMSeUfvmoT5WavmNILM9vXT0yCBNrfNIFX-aC0,1008
|
|
97
|
+
fastapi_forge/templates/without_rbac/README.md,sha256=GaBrPtvE7GRVwdIRQQT_Ep_CRntY_dASTlvXtdx27sQ,3640
|
|
98
|
+
fastapi_forge/templates/without_rbac/_dockerignore,sha256=OuDT93w-aG1j5DQNEANTeFSTy9Sc32PgpxBxX68TMdU,127
|
|
99
|
+
fastapi_forge/templates/without_rbac/_gitignore,sha256=Up9tGI4u2aYkkvt8G_4gSn606zLB5JEF0np9U5PH9e0,190
|
|
100
|
+
fastapi_forge/templates/without_rbac/alembic.ini,sha256=gfLg9hmE4gt-ChkEWjUHN-8Wej4wfh_emJIDmGME91c,548
|
|
101
|
+
fastapi_forge/templates/without_rbac/compose.yaml,sha256=c4taTTxUzA4l36mH3cCLR42JsXRO27DKN37PQZrk7JU,718
|
|
102
|
+
fastapi_forge/templates/without_rbac/pyproject.toml,sha256=iMtdyx45IQCd5BFG9j5NMh76YqtQzeFE00lULUhSh3s,266
|
|
103
|
+
fastapi_forge/templates/without_rbac/requirements-dev.txt,sha256=aPsLYb1Yjemfl5kaxlWyu4F4CXPGQBsjV2FnFTHmxG8,79
|
|
104
|
+
fastapi_forge/templates/without_rbac/requirements.txt,sha256=PtchIkfAkxum3I1mIhFtMwb2zMAnVd6t5T-N-ngUFO0,325
|
|
105
|
+
fastapi_forge/templates/without_rbac/sample.env,sha256=d9lNC8Ui3cNHfMDK-GyGkvcZ8mqnoENpcYYzgoUn1uo,837
|
|
106
|
+
fastapi_forge/templates/without_rbac/_github/workflows/ci.yml,sha256=95uCyOTtxZK8y7WaUT6Kg3R2dfFtYP55p1vjOMQVcHE,407
|
|
107
|
+
fastapi_forge/templates/without_rbac/alembic/README,sha256=6VtZJQ7R5DsP8u6itQlzDNkmcdsTMJwjFpUh7HH-6Hs,100
|
|
108
|
+
fastapi_forge/templates/without_rbac/alembic/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
109
|
+
fastapi_forge/templates/without_rbac/alembic/env.py,sha256=ogIRlWo-IeQkppcAZH7upEVf4x5sSJ4OQ3dZC_mPg34,1347
|
|
110
|
+
fastapi_forge/templates/without_rbac/alembic/script.py.mako,sha256=FsTYq2edOE5lMEitMNb54DUGBw3U1M6PaMJSR4XMRcM,730
|
|
111
|
+
fastapi_forge/templates/without_rbac/alembic/versions/2255ba4f9604_fresh_baseline.py,sha256=uO0hUQliEYn-xlGHRpLDPv08rF2CaO8Xqg96cstXp34,5658
|
|
112
|
+
fastapi_forge/templates/without_rbac/app/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
113
|
+
fastapi_forge/templates/without_rbac/app/main.py,sha256=rG5icrX5kcEjGTQvssCwIBTQ-xwhCqKNgiel-GQgDfU,2065
|
|
114
|
+
fastapi_forge/templates/without_rbac/app/api/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
115
|
+
fastapi_forge/templates/without_rbac/app/api/v1/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
116
|
+
fastapi_forge/templates/without_rbac/app/api/v1/api.py,sha256=iOEyrQgOTl7ydE3Z0EVsyQ0KAIwmRWV0MhQj1wxyokE,854
|
|
117
|
+
fastapi_forge/templates/without_rbac/app/api/v1/schema.py,sha256=nlsmRC9QrV80yHOv1X7vtxKmCLj8aqtj74KpclJ17SU,165
|
|
118
|
+
fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
119
|
+
fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/repository.py,sha256=ypqOPNsdUoebyQEIDg7CRB59ij_vRWXj92qrMObh_yI,1268
|
|
120
|
+
fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/router.py,sha256=HWUZUINDIOF6-sOXBr7-L9rWY3lOCkyO9Dl_fV0bUGk,1575
|
|
121
|
+
fastapi_forge/templates/without_rbac/app/api/v1/audit_logs/schema.py,sha256=BGK5QC6TNMPPAmvuDjfqaQBeQckP3hi8CnV6-0XTlro,562
|
|
122
|
+
fastapi_forge/templates/without_rbac/app/api/v1/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
+
fastapi_forge/templates/without_rbac/app/api/v1/auth/repository.py,sha256=x0nSaRKONBZWxU_1xpFDl1_FWJ9I-yy49fT9nWBi2nI,4570
|
|
124
|
+
fastapi_forge/templates/without_rbac/app/api/v1/auth/router.py,sha256=PiOFYQSWzMxPF57nMhfh4NanXI8TQn54KV7MTW-jk_Q,6907
|
|
125
|
+
fastapi_forge/templates/without_rbac/app/api/v1/auth/schema.py,sha256=8VkGN5L8lpPk0xRi5cDdQ2FpDTkOzLmbHecEyYlfUSI,2861
|
|
126
|
+
fastapi_forge/templates/without_rbac/app/api/v1/auth/service.py,sha256=rjy9AhUNxUp2xwqkqAuRT_1KPXuIvt3BsGvxYcIguWY,13954
|
|
127
|
+
fastapi_forge/templates/without_rbac/app/api/v1/health/__init__.py,sha256=SiJehmHIzCnAxarhKPuhbX3t01EE1flbLVAPqyyxlvU,66
|
|
128
|
+
fastapi_forge/templates/without_rbac/app/api/v1/health/router.py,sha256=GCivg159zFiiKdMvKqiHWfyfnpp5B5lag3ZMSDDAleU,560
|
|
129
|
+
fastapi_forge/templates/without_rbac/app/api/v1/health/schema.py,sha256=c2ZGOlpPvq6Q1ShjseH4IcdqZEPEp0xYeRnpTG1x2Ew,92
|
|
130
|
+
fastapi_forge/templates/without_rbac/app/api/v1/health/service.py,sha256=qx_haKyBXrMX9g_o6uZlbyM-pitXfzSGXWujTi7PMNA,768
|
|
131
|
+
fastapi_forge/templates/without_rbac/app/api/v1/users/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
132
|
+
fastapi_forge/templates/without_rbac/app/api/v1/users/repository.py,sha256=Z0KkT6tCoWan1rZ5-vQXVzuHcreKoJLz2M048oeFHuw,2236
|
|
133
|
+
fastapi_forge/templates/without_rbac/app/api/v1/users/router.py,sha256=rL8D-nyrYEP6gY4Y15UlKcc_l3eW2vWvB9qfdjZlmsc,3064
|
|
134
|
+
fastapi_forge/templates/without_rbac/app/api/v1/users/schema.py,sha256=n0FP0GflsRSXFrZJNwK6FktjT4bi-5oScIvW_Jjvnis,1414
|
|
135
|
+
fastapi_forge/templates/without_rbac/app/api/v1/users/service.py,sha256=4pV-6MBcBvmo3zISvFTwABWTdVHBaN6OUVB42OnBhJU,3864
|
|
136
|
+
fastapi_forge/templates/without_rbac/app/core/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
137
|
+
fastapi_forge/templates/without_rbac/app/core/config.py,sha256=V_gchI2EwXgsJMjlwGVabF-tAaXldDaOyg9wJCQMMxA,4156
|
|
138
|
+
fastapi_forge/templates/without_rbac/app/core/dependencies.py,sha256=-wEd33ByJmINmuRyUcq_yAy2zBeSsJ2kD2YFFWIBFBQ,2089
|
|
139
|
+
fastapi_forge/templates/without_rbac/app/core/exceptions.py,sha256=QJ_5ejrdS7K_F9sv6aXezlbdPeArJg2sE4nzMusRaEU,5813
|
|
140
|
+
fastapi_forge/templates/without_rbac/app/core/logging.py,sha256=EWXisZE6tJ__teZAlt9th0i50U8Kng3NFnYNLWWiojM,8538
|
|
141
|
+
fastapi_forge/templates/without_rbac/app/core/middleware.py,sha256=D96EvBps804KC-z1O1KIIECiLcWFapBcjytRNfFvJ6Y,7371
|
|
142
|
+
fastapi_forge/templates/without_rbac/app/core/responses.py,sha256=TkV_ioUoctrcOSWaRmkrNELeFgc_q9ueudhgxyl00xo,3173
|
|
143
|
+
fastapi_forge/templates/without_rbac/app/core/security.py,sha256=apBnWLXrrYyMZw50oR-QjhgrigPrBcrmSoEL3ZjJhOA,4068
|
|
144
|
+
fastapi_forge/templates/without_rbac/app/db/__init__.py,sha256=Eo4qZjFu7mJWJ0ZMB1F6p7eXswpVZDxdgA0shdLdn8o,25
|
|
145
|
+
fastapi_forge/templates/without_rbac/app/db/base.py,sha256=0LXS0WlLr1KAHGZng46SmUwJam8m2AxVDBqK1Yzwx8w,88
|
|
146
|
+
fastapi_forge/templates/without_rbac/app/db/session.py,sha256=U_1fR4cS-Bldlz8ZjdauQK9Bcrxs2rOIBUQhLEW-aHY,2545
|
|
147
|
+
fastapi_forge/templates/without_rbac/app/db/models/__init__.py,sha256=LM7RrVMK3SlyM2_x3oqLvRiXe6LNzoe88bu7mKSGyls,297
|
|
148
|
+
fastapi_forge/templates/without_rbac/app/db/models/audit_log.py,sha256=sz56w6-dSDDjFSi27pWoQJY0OcUcjvzmBXGItNliTt8,2880
|
|
149
|
+
fastapi_forge/templates/without_rbac/app/db/models/auth_token.py,sha256=-_VRtDT-X0NqwQFTlYa7HwmrKvEqdtKudv50eIlxSV0,3018
|
|
150
|
+
fastapi_forge/templates/without_rbac/app/db/models/notification.py,sha256=KRCGARaUpkCxNSL26jyZbtYIYRxNbdj-PIWBudgmT8g,1839
|
|
151
|
+
fastapi_forge/templates/without_rbac/app/db/models/revoked_token.py,sha256=su0-RQztpFcGbLrONOpGFWhChGUNoa1y-DKzvn5EivU,663
|
|
152
|
+
fastapi_forge/templates/without_rbac/app/db/models/user.py,sha256=VXqB5o1f-nRO8sC1ofPSg5f15S9VHVXGglwZksdQYPk,1436
|
|
153
|
+
fastapi_forge/templates/without_rbac/app/db/schemas/__init__.py,sha256=QVY86RBOAri0LxEC9DyMSgFc-_HHKqUZ9o1sgtP7Rv0,192
|
|
154
|
+
fastapi_forge/templates/without_rbac/app/db/schemas/common.py,sha256=-uvgcJ5s7PG7pNn0lSS7FuO_HBihtfnJDexhSdB4Md0,1966
|
|
155
|
+
fastapi_forge/templates/without_rbac/app/db/schemas/names.py,sha256=6cif5u7PP_hlsY4DTRtCCwU4pXQERN8GwyNlzlVsPA4,82
|
|
156
|
+
fastapi_forge/templates/without_rbac/app/helper/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
157
|
+
fastapi_forge/templates/without_rbac/app/helper/pagination_helper.py,sha256=R0IvEqpxG0jvGaLvMjlh5haiEqx4l0O_In0TSBPULH4,1308
|
|
158
|
+
fastapi_forge/templates/without_rbac/app/helper/search.py,sha256=AVO9NzHQCczKk3kOO9ERetDwWJgkd1sJLXmWJ2L4XCw,1405
|
|
159
|
+
fastapi_forge/templates/without_rbac/app/helper/sorting.py,sha256=YWaocA75xkg4dHig5mUBj7Q1QSE4KYrsgNjhYnIPI5A,2155
|
|
160
|
+
fastapi_forge/templates/without_rbac/app/repositories/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
161
|
+
fastapi_forge/templates/without_rbac/app/repositories/base.py,sha256=n4rnHSbr1O-ZuzMyfErCf4ucRzGfWsyzUZxpH7aMOf8,12865
|
|
162
|
+
fastapi_forge/templates/without_rbac/app/services/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
163
|
+
fastapi_forge/templates/without_rbac/app/services/audit.py,sha256=pbhsNwCeKwx-ePZpLUeGA1wFynsMYadDij7KqGMAikc,1796
|
|
164
|
+
fastapi_forge/templates/without_rbac/app/services/email.py,sha256=rLmYKKOtOiLad5rrdRF-vQti9QVla7qC_9uwpUsVvuk,4154
|
|
165
|
+
fastapi_forge/templates/without_rbac/app/services/notification.py,sha256=QNsyuxxwXgrC1X_6Dbowj1a-CzKiiTJFoeVd9VLwXCw,2693
|
|
166
|
+
fastapi_forge/templates/without_rbac/app/templates/email/notification.html,sha256=SfBn6_v1EMpiL3nSQ3yzqxcqe7ZrdVIxbUfE6uSKRkc,110
|
|
167
|
+
fastapi_forge/templates/without_rbac/app/templates/email/password_reset.html,sha256=mfLwT_Xh0vlfOtzHhjvIZpgbteu_0ZPwEmV7USS-o3E,176
|
|
168
|
+
fastapi_forge/templates/without_rbac/app/templates/email/verify_email.html,sha256=erig0DOPoWm57sUyrFfT0Zt66fDKe9iQr-_byVwfyKc,181
|
|
169
|
+
fastapi_forge/templates/without_rbac/app/templates/email/welcome.html,sha256=ZEsNbRycpzsCWyDWbYXv3fKTIN7S-mUCx16xq2EQMLQ,104
|
|
170
|
+
fastapi_forge/templates/without_rbac/app/utils/casing.py,sha256=4VKk9QMueN8gMO0rWfeIyM7gfxZCdig3oUWooMuKVDc,997
|
|
171
|
+
fastapi_forge/templates/without_rbac/scripts/seed_first_user.py,sha256=sYF8gM8Xl5sjhrWknr8ZiraZIK7PaKaz7KYA4J98Lbo,1526
|
|
172
|
+
fastapi_forge/templates/without_rbac/tests/test_audit.py,sha256=cxfbZEY1XJGx1z2Oq95CV91c4Kg30DR3aEvilsup9e8,1035
|
|
173
|
+
fastapi_forge/templates/without_rbac/tests/test_config.py,sha256=TsjsaGDv1PzHv50wXTskss4H-BZvvvTQWF-LLO4DsI0,754
|
|
174
|
+
fastapi_forge/templates/without_rbac/tests/test_generator.py,sha256=F_a-zUimlDuGLNIPv2IgPP-i66lnc0_hTjr_1fnTPPE,671
|
|
175
|
+
fastapi_forge/templates/without_rbac/tests/test_security.py,sha256=fmRHOu2oadg9moLyg_hnz3abUYCRRKKj_jj_QcEY2Sc,1784
|
|
176
|
+
fastapi_forge_cli-0.1.0.dist-info/licenses/LICENSE,sha256=ufttZ7f5C7RxeGohC0kP77yqFELSApoUI1WynM4jni4,825
|
|
177
|
+
fastapi_forge_cli-0.1.0.dist-info/METADATA,sha256=ExTJgEOtpXJ7xV8jE-GvtvcDNnL46MkAYoDzUffHbPc,6707
|
|
178
|
+
fastapi_forge_cli-0.1.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
179
|
+
fastapi_forge_cli-0.1.0.dist-info/entry_points.txt,sha256=71bC6pOTcDiDv904Yvus-eVEF5OJzrKMUm1nL6AmGcs,57
|
|
180
|
+
fastapi_forge_cli-0.1.0.dist-info/top_level.txt,sha256=seSvGRSnC7c-yV-pQHKLsnKFdHlFjBobvt4__c1-ONE,14
|
|
181
|
+
fastapi_forge_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 FastAPI Forge Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
18
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fastapi_forge
|