managarten/apps/picture/apps/web
Till-JS ff22a29723 🌐 feat(i18n): make all auth pages multilingual
Add dynamic locale support to all login, register, and forgot-password
pages across apps. Pages now use $locale from svelte-i18n instead of
hardcoded language codes.

Apps updated:
- clock: login (also consolidated to standard pattern)
- manacore: register
- manadeck: register
- nutriphi: login, register, forgot-password
- picture: register, forgot-password
- planta: login
- questions: login, register, forgot-password
- skilltree: login, register, forgot-password

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 12:54:52 +01:00
..
docs refactor(picture): remove Supabase dependency, migrate to NestJS backend 2025-12-01 14:22:49 +01:00
src 🌐 feat(i18n): make all auth pages multilingual 2026-02-01 12:54:52 +01:00
static refactor: restructure 2025-11-26 03:03:24 +01:00
.env.example 🔥 chore(picture): remove PostHog analytics for GDPR compliance 2026-01-28 12:24:22 +01:00
.gitignore refactor: restructure 2025-11-26 03:03:24 +01:00
.npmrc refactor: restructure 2025-11-26 03:03:24 +01:00
.prettierignore refactor: restructure 2025-11-26 03:03:24 +01:00
.prettierrc refactor: restructure 2025-11-26 03:03:24 +01:00
_redirects refactor: restructure 2025-11-26 03:03:24 +01:00
eslint.config.js improve code quality 2025-12-03 23:42:37 +01:00
netlify.toml refactor: restructure 2025-11-26 03:03:24 +01:00
package.json 🐛 fix(mana-core-auth): add explicit urlencoded body parser for OAuth token endpoint 2026-02-01 03:56:17 +01:00
README.md refactor: restructure 2025-11-26 03:03:24 +01:00
svelte.config.js style: auto-format codebase with Prettier 2025-11-27 18:33:16 +01:00
tsconfig.json refactor: restructure 2025-11-26 03:03:24 +01:00
vite.config.ts 🐛 fix(web-apps): fix Vite type compatibility and Svelte 5 store issues 2026-02-01 04:00:29 +01:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.