Create 2 .env files in front-end and back-end folder
In Back-End .env file write in:
PGUSER=postgres PGHOST=127.0.0.1 PGPASSWORD="123" PGDATABASE=tokenguard PGPORT=5432
In the Back-End folder run npx tsx src/index.ts
In Front-End .env file write in:
VITE_APP_MY_BACKEND: http://localhost:8000/api
In the Front-End folder run npm run dev
In the DB create tables with the commands from the init.sql or import it
npm test
For the front-end used: SvelteKit, Tailwind, TypeScript For the back-end used: Node.js, Postgres, TypeScript Wrapped in the Docker.