Rewrite of the WebUI with Tailwind 4 and DaisyUI 5
Find a file
Djuri Baars 5ed4140b9c
Some checks failed
/ build (push) Failing after 1m28s
/ check-changes (push) Successful in 1m4s
wip: Add testing buttons
2025-05-13 01:02:34 +02:00
.forgejo/workflows fix: workflow fix 2025-05-03 19:03:49 +02:00
e2e feat: Lint fixes, add forgejo workflow and e2e tests 2025-05-03 18:45:32 +02:00
messages feat: Most settings implemented 2025-05-04 02:12:17 +02:00
patches Initial commit 2025-05-03 18:21:06 +02:00
project.inlang Initial commit 2025-05-03 18:21:06 +02:00
src wip: Add testing buttons 2025-05-13 01:02:34 +02:00
static Initial commit 2025-05-03 18:21:06 +02:00
.gitignore feat: Most settings implemented 2025-05-04 02:12:17 +02:00
.npmrc Initial commit 2025-05-03 18:21:06 +02:00
.prettierignore Initial commit 2025-05-03 18:21:06 +02:00
.prettierrc Initial commit 2025-05-03 18:21:06 +02:00
eslint.config.js feat: Most settings implemented 2025-05-04 02:12:17 +02:00
gzip_build.py fix: workflow fixes 2025-05-03 18:48:32 +02:00
package.json wip: Add testing buttons 2025-05-13 01:02:34 +02:00
playwright.config.ts Initial commit 2025-05-03 18:21:06 +02:00
pnpm-lock.yaml wip: Add testing buttons 2025-05-13 01:02:34 +02:00
README.md Initial commit 2025-05-03 18:21:06 +02:00
svelte.config.js feat: Lint fixes, add forgejo workflow and e2e tests 2025-05-03 18:45:32 +02:00
tsconfig.json Initial commit 2025-05-03 18:21:06 +02:00
vite.config.ts Initial commit 2025-05-03 18:21:06 +02:00
vitest-setup-client.ts Initial commit 2025-05-03 18:21:06 +02: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.