Skip to content

Klasse-Digitale-Grafik/never-ready

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

neverready

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

Workflow

  1. Requirements
  • git if you want to contribute to the project
  • node and npm to compile and run the website
  1. Download the project via git
git clone https://github.com/Klasse-Digitale-Grafik/never-ready.git
  1. Install all node dependencies
npm install
  1. Run development server with hot module replacement
npm run dev
  1. Export static bundle
npm run build
  1. Deploy

Upload all content of the build folder to your webserver.

Where to edit stuff

  • 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/...

Help

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.