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.exampleto.envand populate with values - Copy
prisma/.env.exampletoprisma/.envand 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:generatebefore checking in to Git
To deploy, push to the main branch. The application will automatically be deployed after checks have passed.