|
| 1 | +# Junction [](https://travis-ci.org/pythonindia/junction) [](https://gitter.im/pythonindia/junction?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
| 2 | + |
| 3 | +<style> div.col-md-9 img {display: inline-block; margin: 0; border: none; border-radius: 0; padding: 0; }</style> |
| 4 | + |
| 5 | +--- |
| 6 | + |
| 7 | +**Version**: 0.1.0 |
| 8 | + |
| 9 | +Junction is a software to manage proposals, reviews, schedule, feedback during conference. |
| 10 | + |
| 11 | +Setup |
| 12 | +===== |
| 13 | + |
| 14 | +It is advised to install all the requirements inside [virtualenv], use [virtualenvwrapper] to manage virtualenvs. |
| 15 | + |
| 16 | +[virtualenv]: https://virtualenv.pypa.io/en/latest/ |
| 17 | +[virtualenvwrapper]: https://virtualenvwrapper.readthedocs.org/en/latest/ |
| 18 | + |
| 19 | +``` |
| 20 | +pip install -r requirements-dev.txt |
| 21 | +cp settings/dev.py.sample settings/dev.py |
| 22 | +python manage.py migrate --noinput |
| 23 | +python manage.py sample_data |
| 24 | +``` |
| 25 | + |
| 26 | +Initial auth data: admin/123123 |
| 27 | + |
| 28 | +Configuring Django-allauth |
| 29 | +--------------------------- |
| 30 | + |
| 31 | + - Go to `http://localhost:8000/nimda/sites/site/` |
| 32 | + - Change the default site's(the one with ID = 1) name and display to `localhost:8000` |
| 33 | + - Go to `Social Applications` in admin panel and add [Github](http://django-allauth.readthedocs.org/en/latest/providers.html#github) and [Google](http://django-allauth.readthedocs.org/en/latest/providers.html#google)'s auth details |
| 34 | + |
| 35 | +Making Frontend Changes |
| 36 | +--------------------------- |
| 37 | +Make sure you have nodejs, npm, bower, grunt-cli & grunt installed |
| 38 | + |
| 39 | +``` |
| 40 | +$ cd junction/static |
| 41 | +$ npm install |
| 42 | +$ bower install |
| 43 | +$ grunt // This starts a watcher to watch for file changes |
| 44 | +``` |
| 45 | + |
| 46 | + |
| 47 | +Contributing |
| 48 | +============ |
| 49 | + |
| 50 | +1. Choose an [issue][issue-list] and ask any doubts in the issue thread. |
| 51 | +2. Report any bugs/feature request as github [new issue][new-issue], if it's already not present. |
| 52 | +3. If you are starting to work on an issue, please leave a comment saying "I am working on it". |
| 53 | +4. Once you are done with feature/bug fix, send a pull request according to the [guidelines]. |
| 54 | + |
| 55 | +[issue-list]: https://github.com/pythonindia/junction/issues/ |
| 56 | +[new-issue]: https://github.com/pythonindia/junction/issues/new |
| 57 | +[guidelines]: https://github.com/pythonindia/junction/blob/master/CONTRIBUTING.md |
0 commit comments