@@ -25,43 +25,43 @@ Get Started!
2525If you're not familiar with `Pelican <http://docs.getpelican.com/ >`_, check out the blog post on
2626`Getting Started with Pelican and GitHub Pages <http://www.mattmakai.com/introduction-to-pelican.html >`_.
2727
28- Ready to contribute? Here's how to set up Full Stack Python for local
29- development.
28+ **Ready to contribute? Here's how to set up Full Stack Python for local development. **
3029
31301. Fork the `fullstackpython.github.com <https://github.com/makaimc/fullstackpython.github.com >`_ repo on GitHub.
3231
33- 1 . Clone your fork locally::
32+ 2 . Clone your fork locally::
3433
3534 $ git clone git@github.com:your_name_here/fullstackpython.github.com.git fsp
3635
37- 1 . Install your local copy into a virtualenv and set up your fork for local development::
36+ 3 . Install your local copy into a virtualenv and set up your fork for local development::
3837
3938 $ virtualenv --no-site-packages venvs/fsp
4039 $ source venvs/fsp/bin/activate
4140 $ cd fsp
4241
43- 1 . Install the requirements::
42+ 4 . Install the requirements::
4443
4544 $ pip install -r source/requirements.txt
4645
4746Note: make changes to the source/content/pages/\* .rst files then execute a
4847*make run * command from the source/ directory.
4948
50- 1 . Commit your changes and push your branch to GitHub::
49+ 5 . Commit your changes and push your branch to GitHub::
5150
5251 $ git add .
5352 $ git commit -m "Your detailed description of your changes."
5453 $ git push origin gh-pages
5554
56- 1 . Submit a pull request through the GitHub website.
55+ 6 . Submit a pull request through the GitHub website.
5756
58- 1. To keep your fork in sync with the original repo, add an `upstream remote <https://help.github.com/articles/configuring-a-remote-for-a-fork/ >`_::
57+ **Keep your fork in Sync **
58+
59+ 7. To keep your fork in sync with the original repo, add an `upstream remote <https://help.github.com/articles/configuring-a-remote-for-a-fork/ >`_::
5960
6061 $ git remote add upstream git@github.com:makaimc/fullstackpython.com.git
6162
62- 1 . Sync your repo with the original repo::
63+ 8 . Sync your repo with the original repo::
6364
6465 $ git checkout master
6566 $ git fetch upstream
66- $ git merge upstream/master
67-
67+ $ git merge upstream/master
0 commit comments