blob: 5d4fe19f67965cb48e9b3e7d50658a7b338d665e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|

# <img width="32px" src="./public/images/wifi.png"> WiFi Card
https://wificard.io
Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc.

## Running locally
Run the official Docker image on http://localhost:8080
```
make run
```
## Development
1. Make sure you have `yarn` installed
2. Run the live-reload server on http://localhost:3000
```
make dev
```
This project uses [Prettier](https://prettier.io/) formatting and all pull requests must pass
the automated lint checks prior to merging.
Run the link check with:
```
npx prettier --check . '!**/*.min.{css,js}'
```
Rewrite the files to resolve any style issues with:
```
npx prettier --write . '!**/*.min.{css,js}'
```
|