Skip to content

Latest commit

 

History

History
66 lines (39 loc) · 1.82 KB

CONTRIBUTING.rst

File metadata and controls

66 lines (39 loc) · 1.82 KB

Contributing

Contributions are welcome and greatly appreciated!

Fix Typos, Grammar Errors, etc

Create pull requests at https://github.com/makaimc/fullstackpython.com/pulls.

Submit Feedback

The best way to send feedback is to file an issue at https://github.com/makaimc/fullstackpython.com/issues.

Get Started!

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.

  1. Fork the fullstackpython.com repo on GitHub.
  2. Clone your fork locally:

    $ git clone git@github.com:your_name_here/fullstackpython.com.git fsp
  3. 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
  4. Install the requirements:

    $ pip install -r requirements.txt

Note: make changes to the source/content/pages/*.rst files then execute a make run command from the source/ directory.

  1. 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
  2. Submit a pull request through the GitHub website.

Keep your fork in Sync

  1. To keep your fork in sync with the original repo, add an upstream remote:

    $ git remote add upstream git@github.com:makaimc/fullstackpython.com.git
  2. Sync your repo with the original repo:

    $ git fetch upstream
    $ git merge upstream/gh-pages