SvelteKit website for 2022 never ready conference organized by Klasse Digitale Grafik, HFBK Hamburg.
Live version: http://never-ready.hfbk.net
Test version: https://never-ready.netlify.app
- Requirements
git
if you want to contribute to the projectnode
andnpm
to compile and run the website
- Download the project via git
git clone https://github.com/Klasse-Digitale-Grafik/never-ready.git
- Install all node dependencies
npm install
- Run development server with hot module replacement
npm run dev
- Export static bundle
npm run build
- Deploy
Upload all content of the build
folder to your webserver.
- Pages
src/routes/...
- Timetable
static/data/timetable.csv
- Website Components (e.g. menu or footer)
src/lib/...
- Global CSS
static/global.css
- Static images
static/images/...
If you have never worked with Svelte and SvelteKit before: Svelte is a JS compiler that makes it easier to make interactive interface with HTML, JS, CSS. SvelteKit is a framework that makes it easy to build real websites with Svelte. You might want to download a Svelte extension for your code editor VS Code.