Skip to content

One platform to rule them all - Feature as a service platform

License

Notifications You must be signed in to change notification settings

EVY-Platform/evy

Repository files navigation

EVY

One platform to rule them all - Plaform to enable Features as a Service

Setup

  1. Install Bun
  2. Install Docker

Running Services

Development (with Docker Compose)

Run all services together (builds images locally):

docker compose up --build
cd api
bun install
bun run db:seed

Production (with Docker Compose)

Uses pre-built images from GitHub Container Registry (requires authentication):

docker compose -f docker-compose.prod.yml up

Running Services Separately

API

cd api
bun install
bun run db:seed # Optionally
bun run dev

Or with Docker:

cd api
docker build -t evy-api .
docker run -p 8000:8000 -e DB_URL="your-database-url" evy-api

Web

cd web
bun install
bun run dev

Or with Docker:

cd web
docker build -t evy-web .
docker run -p 3000:3000 evy-web

See individual README files for more details.

About

One platform to rule them all - Feature as a service platform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •