Files
flug/README.md
T

28 lines
401 B
Markdown
Raw Normal View History

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
2026-05-28 19:11:41 -07:00
## Usage
Install the required dependencies:
2026-05-19 22:31:09 -07:00
```bash
2026-05-28 19:11:41 -07:00
nvm use stable
2026-05-19 22:31:09 -07:00
npm install
2026-05-28 19:11:41 -07:00
npm install -g vite
2026-05-19 22:31:09 -07:00
```
Run the development server:
2026-05-28 19:11:41 -07:00
2026-05-19 22:31:09 -07:00
```bash
2026-05-28 19:11:41 -07:00
vite
2026-05-19 22:31:09 -07:00
```
2026-05-19 22:32:56 -07:00
## Building docker image
To build the Docker image, run:
2026-05-28 19:11:41 -07:00
2026-05-19 22:32:56 -07:00
```bash
docker buildx build --platform linux/arm64 --push -t docker.tipsy.codes/flug:20260519 .
```