Working on Small Flask Issues
- From:
- Armin Ronacher
- Date:
- 2011-02-19 @ 21:24
Hey,
I went through a lot of feedback.flask.pocoo.org now and created issues
for most of the problems mentioned there. While we have a bunch of big
ones (module system not good enough) there are lots of smaller ones as well.
The good thing about that is that the small ones are perfect candidates
for diving into contributing to Flask :)
So in case you always wanted to send a pull request via github, here are
some things to work on:
https://github.com/mitsuhiko/flask/issues/labels/feedback
In case you're new to that git(hub) thing, here is how it works:
1. fork the repository on github by clicking on the "fork" button
2. create a new branch for your ticket. Name it something like
issue-42 or whatever issue you're working on:
$ git checkout -b issue-42
3. Commit your changes into that branch
4. Push the branch to github:
$ git push issue-42 origin
5. Send a pull request via the github interface for this branch.
Have fun.
Also there will be a sprint at PyCon if you're going there. Send me a
mail if you plan to attend or add yourself to the sprint page:
http://us.pycon.org/2011/sprints/projects/
Regards,
Armin