Simple application for tracking your time

- Copy
backend/.env.exampletobackend/.envand configure your environment variables - Create
backend/.env.keysfile with JWT keys (see.env.keys.examplefor format)- Note: The
.env.keysfile is required because theenvycrate doesn't support multiline environment variables - JWT keys must be on a single line with
\nfor newlines - JWT keys are loaded directly via
std::env::var()from this separate file
- Note: The
- Generate JWT keys if needed:
openssl genrsa -out private.pem 2048 openssl rsa -in private.pem -pubout -out public.pem
- Copy
next-frontend/.env.exampletonext-frontend/.env.localand configure your environment variables - Install dependencies:
npm install - Run development server:
npm run dev
Licensed under the MIT license.