Partico

Partico Accounts Manager.

This will be a website used as a type of account share/manage platform. Secure and open source, but best used with friends and privately hosted.

I decided to try and use SvelteKit for this project!!

I may end up using Bun as my Javascript Runtime instead of Node.js, but that is yet to be decided.

SvelteKit

Everything you need to build a Svelte project, powered by create-svelte, deployed to Vercel.

Deploy Your Own

Deploy with Vercel

Live Example: https://sveltekit-template.vercel.app

Creating a project

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

# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte my-app

Developing

Once you've created a project and installed dependencies with pnpm install, start a development server:

pnpm run dev

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

Building

To create a production version of your app:

pnpm run build

You can preview the production build with npm run preview.