mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 03:19:40 +02:00
Roll out @manacore/local-store to 4 more apps: - Clock: alarms, timers, world clocks in IndexedDB with guest seed - Calendar: calendars, events in IndexedDB with sample events - Contacts: contacts in IndexedDB with 3 sample contacts - ManaDeck: decks, cards in IndexedDB with onboarding flashcards All apps: GuestWelcomeModal, login pill for guests, sync on auth. Dev scripts: added dev:sync, dev:todo:server, dev:todo:local, dev:todo:full updated. 6 of 8 web apps are now local-first (Todo, Zitare, Clock, Calendar, Contacts, ManaDeck). 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.