A simple ticketing system to help me organize contacts for possible future clients.
openssl rand -base64 32 to generate the JWT secret and update the .env to include this under the JWT_SECRET environment secret.bun run db:start to start the postgres docker container.bun run db:push to run the migrations on the database.bun run seed:admin <email> <password> <name> with your email, password, and name replacing the values shown above. Make sure you don't include the angle-brackets.bun run dev or bun dev to run the development server.lib/server/db/schema.ts, routes/api/v1/tickets/+server.ts, routes/+page.svelte, routes/tickets/[id]/+page.svelte, routes/tickets/+page.svelte, routes/tickets/new/+page.svelte, and routes/tickets/new/+page.server.ts.