1# Time Zones Are Hard
2
3> But this site is simple
4
5## Dev
6
7```bash
8# Build CSS, you can add `--watch` too
9sass -s compressed css/
10
11# Run local PHP server
12php -S 127.0.0.1:8080 routing.php
13```
14
15## Docker
16
17```bash
18# Build it locally if you want, or skip this step to pull from my packages
19docker build . -t git.rita.moe/rita/tz:latest
20
21# Change the first "8080" with the port you want to have on your host
22# Or omit "-p 8080:8080" if you're using a reverse-proxy within the docker network
23docker run -d -p 8080:8080 --name tz git.rita.moe/rita/tz:latest
24```