GitHub - ineptcat/pybee.github.io: PyBee

This is the homepage for the BeeWare project.

It is a Lektor-based site.

If you want to contribute a modification, you can fork this repository and submit a pull request. However, do not fork the master branch - fork the lektor branch and make changes thereinstead.

If you want to test out a change before you submit it, download and install Lektor; then from the root directory of the checkout, run:

$ lektor server

This will start a webserver that will autoreload whenever you make a change to site content.

Community

You can talk to the community through:

Contributing

If you find problems with this website, log them on GitHub. If you want to contribute, please fork the code and submit a pull request.

Before submitting a pull request, please make sure your forked branch is up to date with the original branch. To do this:

  • set your upstream remote:

    $ git remote add upstream https://github.com/pybee/pybee.github.io.git
    
  • make sure you have the latest changes from upstream:

    $ git fetch upstream
    
  • rebase your master branch to upstream before pushing to git and submitting a pull request:

    $ git rebase upstream/master