A Sveltkit front-end for viewing and manipulating my webservices data.
Go to file Use this template
2024-08-29 11:40:28 +12:00
src preparing for new Docker Compose deployment method 2024-08-29 08:28:04 +12:00
static preparing for new Docker Compose deployment method 2024-08-29 08:28: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
docker-compose.yml updated Dockerfile anddocker-compose.yml, along with README.md 2024-08-29 11:40:28 +12:00
Dockerfile updated Dockerfile anddocker-compose.yml, along with README.md 2024-08-29 11:40:28 +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 preparing for new Docker Compose deployment method 2024-08-29 08:28:04 +12:00
package.json preparing for new Docker Compose deployment method 2024-08-29 08:28:04 +12:00
README.md updated Dockerfile anddocker-compose.yml, along with README.md 2024-08-29 11:40:28 +12:00
svelte.config.js preparing for new Docker Compose deployment method 2024-08-29 08:28:04 +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.

Deployment

To set up your SvelteKit project, ensure that your svelte.config.js file has this line:

// import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-node';

and then run

npm i -D @sveltejs/adapter-node
npm i dotenv

To build a new image

docker-compose build

To start it up (and tail the logs - CTRL-C to quit out of the logs without affecting running container)

docker-compose up -d && docker-compose logs -f

To clear out an old image (if it's running)

docker-compose down --remove-orphans --rmi 'all'