o
odinpkg.dev
packages / library / gym-odin

gym-odin

275a14elibrary

💪 Track weights and reps of every set in your routines

GPL-3.0 · updated 1 year ago

gym-odin

setup db

export DATABASE_URL="<database-connection-string>"
cargo install sqlx-cli # if not installed
sqlx db setup

run the web server

dev

sudo apt-get install -y libpq-dev
export DATABASE_URL_DEV="<database-connection-string>"
export GOOGLE_CLIENT_ID="<google-client-id>"
export GOOGLE_CLIENT_SECRET="<google-client-secret>"
odin run . -debug

prod

.env

DATABASE_URL_PROD="<database-connection-string>"
GOOGLE_CLIENT_ID="<google-client-id>"
GOOGLE_CLIENT_SECRET="<google-client-secret>"
docker-compose up