SNAP stack is a SvelteKit - Node - (fast)API - Postgres- stack toolkit for building, testing and deploying fullstack CMS, CRM and Mobile SaaS applications
==> python3 -m venv myvenv
==> source myvenv/bin/activate
pip install fastapi
pip install "uvicorn[standard]"
pip install pydantic
pip install --upgrade pip
==> python --version (should be 3.9 or higher)
Python 3.10.9
==> uvicorn --version
Running uvicorn 0.15.0 with CPython 3.10.9 on Darwin
pip install sqlalchemy
pip install passlib
pip install bcrypt
pip install sqladmin
cd SNAP-backend
uvicorn main:app --reload