Foxnouns.NET/Foxnouns.Frontend
sam 2281b3e478
fix: replace port 5000 in example docs with port 6000
macOS runs a service on port 5000 by default. this doesn't actually
prevent the backend server from *starting*, or the rate limiter proxy
from working, but it *does* mean that when the backend restarts, if the
proxy sends a request, it will stop working until it's restarted.

the easiest way to work around this is by just changing the port the
backend listens on. this does not change the ports used in the docker
configuration.
2024-12-25 14:03:15 -05:00
..
.vscode you know what let's just change frontend framework again 2024-11-24 15:55:47 +01:00
src feat(frontend): add footer 2024-12-25 11:04:20 -05:00
static fix: favicon 2024-12-11 20:43:55 +01:00
.dockerignore feat: docker config for new frontend 2024-12-09 18:04:56 +01:00
.env.example fix: replace port 5000 in example docs with port 6000 2024-12-25 14:03:15 -05: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
Dockerfile feat: docker config for new frontend 2024-12-09 18:04:56 +01:00
eslint.config.js fix: fix all eslint errors 2024-12-14 00:46:27 +01:00
icons.js feat: add icon list generation script 2024-11-27 20:00:28 +01:00
package.json chore: update svelte 2024-12-18 02:53:06 +01:00
pnpm-lock.yaml chore: update svelte 2024-12-18 02:53:06 +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.