Web application for managing various applications.
Running the application locally requires a few steps.
First, add all environment variables needed by copying the .env.example file to .env and filling in the values.
Then, install the dependencies and push the database schema and run the development server:
# Install dependencies
pnpm i
# Push the database schema to the database
pnpm db:push
# Start the development server
pnpm devTo build and run the production app:
# Build the app
pnpm build
# Start the production server
pnpm start