|
f0b27a8446
|
Add more data centre locations
The full list of locations was generated from the [Cloudflare Status Page](https://www.cloudflarestatus.com/):
```bash
{
echo 'export const locations = {';
curl -ks https://www.cloudflarestatus.com/ | grep -- '- (' | while read line; do
code=$(awk -F '[()]' '{print $2}' <<< "$line");
city=$(awk -F '[,-]' '{print $1}' <<< "$line");
echo " $code: '${city//\'/’}',";
done | sort;
echo '}';
} > src/functions/locations.js
```
|
2021-10-11 14:13:49 +01:00 |
|
|
6952ed2e8d
|
feat: show city also in header
|
2021-01-19 00:32:31 +01:00 |
|
|
7051f275e7
|
feat: collect response metrics from cron locations
|
2020-11-22 12:42:33 +01:00 |
|
|
fb134bbf74
|
refactor: switch css framework to tailwind
|
2020-11-21 12:16:25 +01:00 |
|
|
c5b9232eb2
|
feat: optimize KV storage read/write operations
- the state is now stored in a single KV key
- there is one write for cron and one read for render
|
2020-11-19 20:25:03 +01:00 |
|
|
61f788df1f
|
refactor: move status header to its own component
|
2020-11-16 22:59:32 +01:00 |
|