Foxnouns.NET/Foxnouns.Frontend
sam de733a0682
feat(frontend): discord registration/login/linking
also moves the registration form found on the mastodon callback page
into a component so we're not repeating the same code for every auth method
2024-11-28 21:37:30 +01:00
..
.vscode you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
src feat(frontend): discord registration/login/linking 2024-11-28 21:37:30 +01:00
static you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
.env.example feat: so much more frontend stuff 2024-11-24 22:19:53 +01:00
.gitignore you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
.npmrc you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
.prettierignore feat: add icon list generation script 2024-11-27 20:00:28 +01:00
.prettierrc you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
eslint.config.js you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
icons.js feat: add icon list generation script 2024-11-27 20:00:28 +01:00
package.json feat(frontend): replace non-working bootstrap tooltips with tippy.js 2024-11-25 21:43:11 +01:00
pnpm-lock.yaml feat(frontend): replace non-working bootstrap tooltips with tippy.js 2024-11-25 21:43:11 +01:00
README.md you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
svelte.config.js you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
tsconfig.json you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
vite.config.ts you know what let's just change frontend framework again 2024-11-24 15:55:47 +01: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.