brew install pyenv
brew install curl
brew install jq
brew install redis
# https://github.com/chmln/sd
cargo install sd
pip install poetry
poetry config virtualenvs.in-project true
poetry sync
poetry self add poetry-plugin-export
poetry export -f requirements.txt --output requirements.txt --without-hashes
# Optional:
# pip install -r requirements.txt
Create .env file with the following contents
BSKY_USERNAME=coilysiren.me # use yours, not mine
BSKY_PASSWORD=1244-1244-1244-1244 # this is a placeholder, create a real one here: https://bsky.app/settings/app-passwords
BSKY_BOT_USERNAME=coilysiren-bot.bsky.social
BSYK_BOT_PASSWORD=1244-1244-1244-1244
OTEL_SDK_DISABLED=true
REDISCLOUD_URL=redis://default:@127.0.0.1:6379 # Would be nice if heroku just provisioned it as "REDIS_URL", but alas. And we should match heroku locally.
Native
poetry sync
Container
docker build \
-t coilysiren/backend:$(git rev-parse --short HEAD) \
-t coilysiren/backend:latest \
.
docker build `
-t coilysiren/backend:$(git rev-parse --short HEAD) `
-t coilysiren/backend:latest `
.
In one terminal, run either of these
poetry run uvicorn src.main:app --reload --port 4000 --host 0.0.0.0
docker run --name coilysiren/backend --rm coilysiren/backend
In a second terminal, run this:
curl "http://localhost:4000/bsky/coilysiren.me/profile" | jq
poetry run jupyter notebook