A Sveltkit front-end for viewing and manipulating my webservices data.
Go to file Use this template
2024-08-18 22:56:20 +12:00
src wip, all messy 2024-08-18 22:56:20 +12:00
static fixed font assignment 2024-08-18 09:48:04 +12:00
.dockerignore adding fonts, a global layout, and Docker deployment stuff. 2024-08-16 17:01:16 +12:00
.gitignore Initial commit 2024-08-09 16:21:51 +12:00
.npmrc Initial commit 2024-08-09 16:21:51 +12:00
.prettierignore Initial commit 2024-08-09 16:21:51 +12:00
.prettierrc Initial commit 2024-08-09 16:21:51 +12:00
Dockerfile adding fonts, a global layout, and Docker deployment stuff. 2024-08-16 17:01:16 +12:00
eslint.config.js recreating the project, but without experimental Svelte 5 support 2024-08-09 19:51:35 +12:00
LICENSE added AGPL v3 license and note to README re my purpose 2024-08-12 15:15:31 +12:00
Notes.md wip, all messy 2024-08-18 22:56:20 +12:00
package-lock.json wip, all messy 2024-08-18 22:56:20 +12:00
package.json wip, all messy 2024-08-18 22:56:20 +12:00
README.md added AGPL v3 license and note to README re my purpose 2024-08-12 15:15:31 +12:00
svelte.config.js added SCSS processing, adding notes 2024-08-16 09:21:40 +12:00
vite.config.js recreating the project, but without experimental Svelte 5 support 2024-08-09 19:51:35 +12:00

Webservices App

This is an app I'm creating to visualise data I've created (in JSON form) describing my self-hosted (professional, volunteer, & personal) webservices.

create-svelte

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

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 create svelte@latest

# create a new project in my-app
npm create svelte@latest 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.