blob: 83a1c3e10cec0d04e9da472ef2204b206fb009e0 (
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
|
# Geshem
An interactive rain radar clone running on Mapbox GL, see it live at: [https://geshem.space](https://geshem.space)
## Dev
- Node + Yarn
- Redis (optional, recommended)
Install dependencies:
```bash
$ yarn install
```
Run a local cache:
```bash
$ redis-server
```
Run a webpack watch process:
```bash
$ webpack --watch
```
Run the server:
```bash
$ node server.js
```
|