No description https://pancho.moe
Find a file
2025-02-07 16:47:49 -03:00
.github build: enable dependabot 2025-02-07 16:47:49 -03:00
src feat: streamed projects data, project card skeleton 2025-02-05 00:48:32 -03:00
static feat: separate project list element into its own component, add dynamic used technology icons, remove thumbnails 2025-01-31 22:54:11 -03:00
.dockerignore build: docker and projects page heads up 2025-01-15 06:23:18 -03:00
.env.example feat: github oauth setup with sessions 2025-01-27 11:47:55 -03:00
.gitignore feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
.npmrc feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
.prettierignore feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
.prettierrc feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
dockerfile build: docker and projects page heads up 2025-01-15 06:23:18 -03:00
drizzle.config.ts feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
eslint.config.js feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
LICENSE chore: add license 2025-01-15 07:55:16 -03:00
package.json build(deps): bump dependencies 2025-01-31 22:57:02 -03:00
pnpm-lock.yaml build(deps): bump dependencies 2025-01-31 22:57:02 -03:00
README.md feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
svelte.config.js build: use node adapter 2025-01-14 03:23:49 -03:00
tailwind.config.ts feat: migrate most css to tailwind (wip) 2025-01-13 20:07:08 -03:00
tsconfig.json feat: wip migration to sveltekit 2025-01-13 05:51:18 -03:00
vite.config.ts build(deps): bump dependency versions and migrate to tailwind 4 2025-01-27 10:52:32 -03: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.