24 lines
399 B
Markdown
24 lines
399 B
Markdown
# Faux Linux User Group presentations
|
|
|
|
This repository contains the FLUG presentations.
|
|
|
|
## Serving localls
|
|
|
|
Run once to install Vite globally:
|
|
```bash
|
|
npm install -g vite
|
|
npm install
|
|
```
|
|
|
|
Run the development server:
|
|
```bash
|
|
vite serve
|
|
```
|
|
|
|
## Building docker image
|
|
|
|
To build the Docker image, run:
|
|
```bash
|
|
docker buildx build --platform linux/arm64 --push -t docker.tipsy.codes/flug:20260519 .
|
|
```
|