If smartphones and the internet were build by the people for the people. Create services on the EVY platform and get paid everytime your contribution is used. The EVY app is privacy-focused, local-first and peer-to-peer.
Run all services together (builds images locally):
docker compose up --build
cd api
bun install
bun run db:seedUses pre-built images from GitHub Container Registry (requires authentication):
docker compose -f docker-compose.prod.yml upcd api
bun install
bun run db:seed
bun run devOr with Docker:
cd api
docker build -t evy-api .
docker run -p 8000:8000 -e DB_URL="your-database-url" evy-apicd web
bun install
bun run devOr with Docker:
cd web
docker build -t evy-web .
docker run -p 3000:3000 evy-webSee individual README files for more details.