https://github.com/georgi2704/vidpit-authentication
auth repo for vidPit
https://github.com/georgi2704/vidpit-authentication
Last synced: 4 months ago
JSON representation
auth repo for vidPit
- Host: GitHub
- URL: https://github.com/georgi2704/vidpit-authentication
- Owner: Georgi2704
- License: apache-2.0
- Created: 2022-03-20T17:16:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T16:10:34.000Z (over 1 year ago)
- Last Synced: 2025-03-13T10:40:58.856Z (7 months ago)
- Language: Python
- Size: 6.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fastapi-postgres-boilerplate
My own fastapi postgres boilerplate## Server
This project only works with Python 3.8, 3.9 and 3.10.
If you want to use a virtual environment first create the environment:```bash
python3 -m venv .venv
source venv/bin/activate
```You can install the required libraries with pip. The following command will install all the required
libraries for the project. Check out the different files under requirements to more specifically see
which library is used and for what reason.```bash
pip install -r ./requirements/all.txt
```A PostgreSQL user and two databases are required ('boilerplate' is the password used by default).
```bash
createuser -sP boilerplate
createdb boilerplate -O boilerplate
createdb boilerplate-test -O boilerplate
```Now you should be able to start a hot reloading, api server:
```bash
PYTHONPATH=. uvicorn server.main:app --reload --port 8080
```Or run a threaded server and auto-apply migrations on launch:
```bash
/bin/server
````## Running tests
```bash
PYTHONPATH=. pytest tests/unit_tests
```## Configuring the server
All configuration is done via ENV vars.
```bash
export SESSION_SECRET="SUPER_DUPER_SECRET"
export TESTING=False
```> Note: FastAPI will detect and automatically load an existing `.env` file.
## Creating an intiial admin user
There is a script in the main folder that creates a initial user with superuser rights:
```bash
PYTHONPATH=. python server/create_initial_user.py
```Note: you can influence the default pass from the settings / env vars.
## DB Migrations
The database schema is maintained by migrations (see `/migrations` for the
definitions). Pending migrations are automatically applied when starting the
server.There are 2 migration branches that move independently of one another. The data branch which contains
all needed data (e.g. examples etc.) and the Schema branch.### Schema migration
To create a new schema migration:
```bash
PYTHONPATH=. alembic revision --autogenerate -m "New schema" --head=schema@head
```This opens a new migration in `/migrations/versions/`
The initial scheme was created with:
```bash
PYTHONPATH=. alembic revision --autogenerate -m "Initial scheme" --head=schema@head --version-path=migrations/versions/schema
```### General Migration
To create a data migration do the following:
```bash
PYTHONPATH=. alembic revision --message "Name of the migration" --head=general@head
```This will also create a new revision file where normal SQL can be written like so:
```python
conn = op.get_bind()
res = conn.execute("INSERT INTO products VALUES ('x', 'y', 'z')")
```## Manual deploy
Activate a python env with SAM installed, fire up Docker if it's not already running and run:
```
sam validate
sam build --use-container --debug
sam package --s3-bucket YOUR_S3_BUCKET \
--output-template-file out.yml --region eu-central-1
```And then deploy it with:
```
sam deploy --template-file out.yml \
--stack-name fastapi-postgres-boilerplate \
--region eu-central-1 --no-fail-on-empty-changeset \
--capabilities CAPABILITY_IAM
```An more detailed explanation about the deployment on Amazon lambda can be found on:
[renedohmen.nl/deploy-fastapi-on-amazon-serverless](https://www.renedohmen.nl/deploy-fastapi-on-amazon-serverless/)Workshop:
=========
- deliver the tests for DB model: `maps`
- get it running on AWS yourself
- fix db default and product save() problem