This is the source for kubemtu.com.
- Install Node.js & Yarn (something like nvm works well)
- Clone this repo and install dependencies with
yarn install
- Copy
.env.example
to.env
and populate with values - Copy
prisma/.env.example
toprisma/.env
and populate with a URL to a local database - Migrate your database with
yarn migrations:run
- Start the application with
yarn dev
- If you make changes to the database models, make sure to run
yarn migrations:generate
before checking in to Git
To deploy, push to the main
branch. The application will automatically be deployed after checks have passed.