27 lines
510 B
Markdown
27 lines
510 B
Markdown
# Kafka Dance Site
|
|
|
|
Powered by Svelte!
|
|
|
|
## Developing
|
|
|
|
Once you've downloaded the project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
|
|
|
```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:
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
This is currently configured to build as a completely static app.
|
|
|
|
You can preview the production build with `npm run preview`.
|