A web app to calculate cocktails for specific events
The configuration is done via a .env file.
Please copy the file .env.example and rename it to .env.
More information about the individual confirmation values can be found in
env.validation.ts file.
Note that values marked with (client dev only) are only read in development mode. In production mode, the values must
be given as node environment variables via the command line (e.g. PORT=3001 npm run start:client).
(client dev only) values are only necessary for the client.
Follow this steps assuming you have installed Node.js and npm:
- Clone the repository
- Configure the
.envfile as described above - Run
npm installin the root directory - Run
npm run buildto build everything (You can also runnpm run build:client,npm run build:serverornpm run build:dbto build individual parts) - Run
npm run start:serverto start the server - Run
npm run start:clientto start the client