https://github.com/svelte-society/svelte-summit
The Svelte Summit 2021 spring website
https://github.com/svelte-society/svelte-summit
Last synced: 6 months ago
JSON representation
The Svelte Summit 2021 spring website
- Host: GitHub
- URL: https://github.com/svelte-society/svelte-summit
- Owner: svelte-society
- License: mit
- Archived: true
- Created: 2020-07-23T20:43:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T07:34:09.000Z (over 4 years ago)
- Last Synced: 2024-11-19T05:55:58.253Z (12 months ago)
- Language: Svelte
- Homepage: https://sveltesummit.com
- Size: 8.94 MB
- Stars: 9
- Watchers: 2
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-sveltekit - [code
README
# Svelte Summit 2020 Website
### Install the dependencies:
```bash
npm install # or just yarn
```
### Start Project:
```bash
npm start
```
Navigate to [localhost:3000](http://localhost:3000). You should see your app running.
### Development:
For development, we recommend running two separate terminals. One for the server and the other for rollup (note that this command does not have an explicit `npm start` command for this reason).
**Terminal 1**
```bash
npm run dev:server # `npm start` above starts a server, but doesn't rebuild your Svelte components on change.
```
**Terminal 2**
```bash
npm run dev:rollup # This rebuilds your svelte components on change.
```
Once you have these two terminals open, edit a component file in `src`, save it, and reload the page to see your changes.
### To Build HTML:
```bash
npm run build
```
This will build all of your html into the /public/ folder.