kafka-dance-site/README.md

27 lines
510 B
Markdown
Raw Permalink Normal View History

# Kafka Dance Site
2022-08-31 18:03:29 -04:00
Powered by Svelte!
2022-08-31 18:03:29 -04:00
## Developing
Once you've downloaded the project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
2022-08-31 18:03:29 -04:00
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To build out the production version:
2022-08-31 18:03:29 -04:00
```bash
npm run build
```
This is currently configured to build as a completely static app.
2022-08-31 18:03:29 -04:00
You can preview the production build with `npm run preview`.