2018-04-09 16:16:14 -04:00
|
|
|
# packaging docs
|
|
|
|
|
|
|
|
## Running the server for writing new articles
|
|
|
|
|
|
|
|
Running the pelican development server is useful when writing new articles. The steps to
|
|
|
|
get it running are:
|
|
|
|
|
2018-04-10 02:52:46 +02:00
|
|
|
1. Install pelican:
|
2018-04-10 02:52:46 +02:00
|
|
|
````
|
|
|
|
sudo dnf install python2-pelican python2-GitPython
|
|
|
|
python-beautifulsoup4 rubygem-asciidoctor
|
|
|
|
````
|
2018-04-09 22:51:39 +02:00
|
|
|
|
2018-04-09 16:16:14 -04:00
|
|
|
2. Check out the packagin docs source (from your fork or the main repo)
|
|
|
|
3. In the main folder of the checked out repo, run `./develop_server.sh start`
|
|
|
|
and your local copy of the Docs Fedora will be at http://localhost:8000/
|
2018-04-10 11:35:00 -04:00
|
|
|
4. To stop the development server, run `./develop_server.sh stop`
|