Foxnouns.NET/Foxnouns.Frontend
sam 74222ead45
feat(frontend): replace placeholder avatar with identicons
i don't actually know what the license on the kitten image is, and while
it's very unlikely, i don't want to get into legal trouble. it was only
ever supposed to be a temporary image, too.

identicons aren't the prettiest but at least they have a clear license
:3
2024-12-03 15:19:52 +01:00
..
.vscode you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
src feat(frontend): replace placeholder avatar with identicons 2024-12-03 15:19:52 +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 placeholder avatar with identicons 2024-12-03 15:19:52 +01:00
pnpm-lock.yaml feat(frontend): replace placeholder avatar with identicons 2024-12-03 15:19:52 +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.