Skip to main content

fullapp TDB

Project description

PyPI PyPI - Python Version GitHub all releases GitHub license PyPI - Implementation PyPI - Wheel PyPI - Status GitHub issues GitHub forks GitHub stars

Fullapp Notes


This combines the learning from these repos into one app;

  • fastapi_play
  • alembic_play
  • sqlalchemy_play
  • pydantic_play

Development log

Create minimal app

Python packages

  • Added the following to requirements.in;
alembic
fastapi[all]
pydantic
psycopg2
SQLAlchemy
sqlalchemy[mypy]
  • Then ran;
pip-compile requirements.in
pip-compile requirements_dev.in
pip-sync requirements.txt requirements_dev.txt 

Docker test db

  • Created docker-compose.yml - see the "Connecting to the test DB" section below

  • Created the app's test db;

docker-compose up
  • Add db/pgdata to .gitignore

Alembic setup

  • Initialise Alembic;
alembic init alembic
  • In alembic.ini update config for docker DB;
sqlalchemy.url = postgresql+psycopg2://play:play@localhost:5440/alembicplay
  • In alembic.ini uncomment file_template line as migration file default naming is pretty awful
file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
  • Setup Alembic to find the app's ORM by changing target_metadata = None in alembic/env.py to;
from src.fullapp.apporm import Base
target_metadata = Base.metadata
  • Added initial ORM file; src/fullapp/apporm.py

  • Auto-generated migration using metadata created in apporm.py and apply it;

alembic revision --autogenerate -m "Bring in initial app orm"
alembic upgrade head

FastAPI setup

  • Added this to src/fullapp/myapp.py;
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
async def root():
    return {"message": "Hello World"}

Installing

  • Run;
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install wheel pip-tools
pip-sync requirements.txt requirements_dev.txt
  • Create the app db;
docker-compose up
alembic upgrade head

Usage

FastAPI app server

  • Run the app server;
uvicorn src.fullapp.myapp:app --reload

Notes

Connecting to the test DB

  • Can connect using;
psql -hlocalhost -p5444 -dtestdb -Uappuser # with password 'generic'

Releasing to PyPI

How I did it this time

Initial upload to Test PyPI

  • Upload using Test PyPI global scope API key;
python3 -m pip install --upgrade twine # Maybe I should add twine to requirements_dev.in?
python3 -m build
python3 -m twine upload --repository testpypi dist/*
    # user name = __token__
    # For p/w, get "API token - Global scope" in 1Password "TestPyPI - grumBit" item 

Set up project specific token

  • Create a new token specifically for the project;
    • Head to Test PtPI -> Manage for fullapp -> Settings -> Create a token for fullapp
    • Set Token name to fullapp
    • Change the Scope to "Project: fullapp`
    • Click Add Token
    • Add the generated token in a new password field named '🔑 API Token - "fullapp"' in the 1Password "TestPyPI - grumBit" item
  • Test the new token by running python3 -m pip install --upgrade twine again, but with the new token

Test uploaded project

  • In a new directory, create a new python venv;
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install wheel pip-tools
  • Install the new project;
package_name="fullapp"
python3 -m pip install --index-url https://test.pypi.org/simple/ --pre ${package_name}  # Check the package can be installed
python3 -c "from fullapp import myapp" # Check package functions

Add the TestPyPi and PyPi API tokens to the repo

  • Open the repo on github -> Settings -> Secrets and variables -> Actions -> New respository secret
  • Name = "TEST_PYPI_API_TOKEN"
  • Secret = The project's API token form the 1Password "TestPyPI - grumBit" item

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fullapp-0.0.5.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

fullapp-0.0.5-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page