Commit Graph

3 Commits

Author SHA1 Message Date
1be56aa37d fix: update auth:schema script and remove duplicate migrate command
Some checks failed
Build Docker Image / build (push) Failing after 40s
2026-03-08 16:24:43 +01:00
efeea1ae19 feat: complete outdoor escape game platform with location-based steps
- Initialize SvelteKit project with authentication and database
- Implement multilingual support (English/French)
- Add authentication system with login, signup, and logout
- Create admin panel with games and sessions management
- Implement game and step management (CRUD operations)
- Add soft delete for escape games
- Create player game flow with step progression
- Implement inventory and collected items system
- Add location-based steps with GPS tracking and proximity validation
- Create compass arrow indicator pointing to destinations
- Add session management with code-based access
- Implement edit session and delete session functionality
- Add terms and conditions page
- Create completion screens with time tracking
- Add tutorial navigation guide
2026-03-08 15:34:24 +01:00
fe8cfdd3f1 feat: initialize SvelteKit project with authentication and database setup
- Add package.json with necessary dependencies and scripts
- Create app.d.ts for type definitions related to authentication
- Set up basic HTML structure in app.html
- Implement server hooks in hooks.server.ts for session management
- Add favicon.svg for branding
- Create index.ts for library imports
- Set up authentication logic in auth.ts using better-auth
- Define database schema in auth.schema.ts and schema.ts for user, session, and game entities
- Create layout and page components with basic content
- Add Tailwind CSS integration in layout.css
- Include robots.txt for web crawling instructions
- Configure SvelteKit with Vercel adapter in svelte.config.js
- Set up TypeScript configuration in tsconfig.json
- Configure Vite with Tailwind CSS and SvelteKit plugins in vite.config.ts
2026-03-07 21:29:45 +01:00