2026-04-03 20:07:14 -07:00
|
|
|
# Faux Linux User Group presentations
|
|
|
|
|
|
|
|
|
|
This repository contains the FLUG presentations.
|
2026-05-19 22:31:09 -07:00
|
|
|
|
|
|
|
|
## Serving localls
|
|
|
|
|
|
|
|
|
|
Run once to install Vite globally:
|
|
|
|
|
```bash
|
|
|
|
|
npm install -g vite
|
|
|
|
|
npm install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Run the development server:
|
|
|
|
|
```bash
|
|
|
|
|
vite serve
|
|
|
|
|
```
|
2026-05-19 22:32:56 -07:00
|
|
|
|
|
|
|
|
## Building docker image
|
|
|
|
|
|
|
|
|
|
To build the Docker image, run:
|
|
|
|
|
```bash
|
|
|
|
|
docker buildx build --platform linux/arm64 --push -t docker.tipsy.codes/flug:20260519 .
|
|
|
|
|
```
|