spaCy/website/README.md

30 lines
629 B
Markdown
Raw Normal View History

2015-09-24 13:23:48 +03:00
Source for spacy.io
==============================
This directory contains the source for official spaCy website at http://spacy.io/.
Fixes, updates and suggestions are welcome.
Releases
--------
Changes made to this directory go live on spacy.io. <When / how often?>
The Stack
--------
The site is built with the [Jade](http://jade-lang.com/) template language.
2015-11-19 15:22:56 +03:00
See [fabfile.py](/fabfile.py) under ```web()``` for more
2015-09-24 13:23:48 +03:00
Developing
--------
To make and test changes
```
npm install jade --global
2015-11-19 15:22:56 +03:00
fab web
cd website/site; python -m SimpleHTTPServer 8000; cd -
2015-09-24 13:23:48 +03:00
```
2015-11-19 15:22:56 +03:00
Then visit [localhost:8000](http://localhost:8000)