Contributions are welcome and greatly appreciated!
Create pull requests at https://github.com/makaimc/fullstackpython.github.com/pulls.
The best way to send feedback is to file an issue at https://github.com/makaimc/fullstackpython.github.com/issues.
If you're not familiar with Pelican, check out the blog post on Getting Started with Pelican and GitHub Pages.
Ready to contribute? Here's how to set up Full Stack Python for local development.
Fork the fullstackpython.github.com repo on GitHub.
Clone your fork locally:
$ git clone [email protected]:your_name_here/fullstackpython.github.com.git fsp
Install your local copy into a virtualenv and set up your fork for local development:
$ virtualenv --no-site-packages venvs/fsp $ source venvs/fsp/bin/activate $ cd fsp
Note: make changes to the source/content/pages/*.rst files then execute a make run command from the source/ directory.
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin gh-pages
Submit a pull request through the GitHub website.