Skip to content

Winguweb/delta

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Delta

Development

Requirements

  • NVM to set up the node version used by the app.
  • Yarn to manage node dependencies.
  • Docker Compose to run backing services.

Setup

  1. Install node dependencies.
    1. Run nvm use to configure the node version used by the app.
    2. Run yarn install to install all node dependencies.
  2. Generate or copy .env files Do so on the root and prisma folders following the structure of both example.env files.
  3. Set up the database and run schema migrations.
    1. Run docker-compose up -d to bring up the database.
    2. Run npx prisma db push to run all schema migrations.
    3. Run npx prisma db seed to seed the db.

Run the app

  1. Run nvm use to configure the node version used by the app.
  2. Run docker-compose up -d to bring up the backing services.
  3. Run yarn dev to start the app at http://localhost:3000.