mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 03:01:24 +02:00
Migrated apps with existing local tags (photos, storage, picture): - Replace local tag stores with createTagStore wrapper - Add shared TagStrip to layouts with tag filtering support - Storage: new tag store, /tags management page - Picture: migrated from Svelte 4 writables to createTagStore New TagStrip added to 12 apps without prior tag system: - chat, citycorners, clock, context, manadeck, manacore, matrix, mukke, planta, presi, questions, zitare - Each gets: tag store, Tags toggle pill in PillNav, TagStrip overlay, /tags management page, fetchTags on auth ready - All backed by central mana-core-auth Tags API All 18 apps now have: - Tags pill in PillNav (toggles TagStrip overlay) - Shared TagStrip component from @manacore/shared-ui - Tag store using createTagStore from @manacore/shared-stores - /tags management page - Cross-app tags via central mana-core-auth Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| src | ||
| static | ||
| .env.example | ||
| .gitignore | ||
| .npmrc | ||
| Dockerfile | ||
| eslint.config.js | ||
| package.json | ||
| README.md | ||
| svelte.config.js | ||
| tailwind.config.js.bak | ||
| tsconfig.json | ||
| vite.config.ts | ||
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.