Post anonymously to a single Farcaster
bun run next:dev
- Set up relevant environment variables
bun run api:dev
- Create a
.envfile with the required environment variables- Copy
.env.docker.exampleto.envand supply the missing values
- Copy
- Run
docker compose up -dto start all services:- Next.js frontend on port 3000
- API server on port 3001
- Redis on port 6379
- PostgreSQL on port 5432
On first boot, run db migrations:
docker compose exec -it api bun db:push
NOTES:-
- You may need to add sudo to the docker compose command
- Your may need to substitute
docker composefordocker-composedepending on your installation