OLD | NEW |
1 # help.eyeo.com | 1 # help.eyeo.com |
2 | 2 |
3 Source code and content of [help.eyeo.com](https://help.eyeo.com). | 3 Source code and content of [help.eyeo.com](https://help.eyeo.com). |
4 | 4 |
| 5 ## Getting started |
| 6 |
| 7 **1. Install [CMS](https://github.com/adblockplus/cms)** |
| 8 |
| 9 This static site is generated using the Adblock Plus CMS. For more information |
| 10 and usage instructions see [CMS documentation](https://github.com/adblockplus/cm
s/blob/master/README.md#content-structure). |
| 11 |
| 12 **2. Install [Gulp.js](https://gulpjs.com/) globally** |
| 13 |
| 14 Gulp is required to build the static assets from the source files. |
| 15 |
| 16 ``` |
| 17 npm install gulp-cli -g |
| 18 ``` |
| 19 |
| 20 **3. Install dependencies** |
| 21 |
| 22 ``` |
| 23 npm install |
| 24 ``` |
| 25 |
| 26 **4. Build static assets** |
| 27 |
| 28 ``` |
| 29 gulp |
| 30 ``` |
| 31 |
| 32 **5. Run the test server** |
| 33 |
| 34 Start the cms test server |
| 35 |
| 36 ``` |
| 37 python path/to/cms/runserver.py |
| 38 ``` |
| 39 |
5 ## License | 40 ## License |
6 | 41 |
7 - Source code: [GPL-3.0](https://www.gnu.org/licenses/gpl.html) | 42 - Source code: [GPL-3.0](https://www.gnu.org/licenses/gpl.html) |
8 - Content: [CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0/) | 43 - Content: [CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0/) |
9 - "Source Sans Pro" Fonts: [SIL Open Font License (2012 Adobe Systems Incorporat
ed)](static/fonts/Source-Sans-Pro-300/LICENSE.txt) | 44 - "Source Sans Pro" Fonts: [SIL Open Font License (2012 Adobe Systems Incorporat
ed)](static/fonts/Source-Sans-Pro-300/LICENSE.txt) |
OLD | NEW |