blob: 871ec1303633a33eec28684364e6eaca02953eec (
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
|
# Geshem
A rain radar clone running on Mapbox GL, see it live at: [http://geshem.space](http://geshem.space)
## Dev
- Python 3.5
- Redis (optional, recommended)
Setup a virtualenv:
```bash
$ mkvirtualenv -p `which python3` geshem
$ pip install -r requirements.txt
```
Then just run:
```bash
$ python geshem.py
```
For doing JS/SCSS work you'll need to init the JS stack:
```bash
$ yarn install
```
and pack all the assets before testing and/or deploying:
```bash
$ NODE_ENV=production webpack
```
Make sure you have a stupid `redis-server` running on localhost to enjoy some sane caching.
|