- Python
- Node js
brew install python
brew install node
brew install postgresql@14
brew services start postgresql
https://www.timescale.com/blog/how-to-install-psql-on-mac-ubuntu-debian-windows/
Create a file .env and copy the following into it.
ENV=development
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=<local username>
POSTGRES_PASSWORD=<local password>
POSTGRES_DB=<local db>
./develop/install_deps.sh
./develop/run_local_server.sh
# create a revision
alembic revision --autogenerate -m "commit message"
alembic upgrade head