# Junction (old) [![Build Status](https://travis-ci.org/pythonindia/junction.svg)](https://travis-ci.org/pythonindia/junction) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/pythonindia/junction?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) **NOTE: This document and linked sections may be out of date.** * [API](../api.md) * [Release notes](../release_notes.md) * [Conference reviewers](../conference_reviewers.md) **Version**: 0.2.0-dev Junction is a software to manage proposals, reviews, schedule, feedback during conference. ## Setup It is advised to install all the requirements inside [virtualenv], use [virtualenvwrapper] to manage virtualenvs. [virtualenv]: https://virtualenv.pypa.io/en/latest/ [virtualenvwrapper]: https://virtualenvwrapper.readthedocs.org/en/latest/ ``` pip install -r requirements.txt cp settings/dev.py.sample settings/dev.py python manage.py migrate --noinput python manage.py sample_data ``` Initial auth data: admin/123123 ### Configuring Django-allauth - Go to `http://localhost:8000/nimda/sites/site/` - Change the default site's(the one with ID = 1) name and display to `localhost:8000` - 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 ### Making Frontend Changes Make sure you have nodejs, npm, bower, grunt-cli & grunt installed ``` $ cd junction/static $ npm install $ bower install $ grunt // This starts a watcher to watch for file changes ``` ## Contributing 1. Choose an [issue][issue-list] and ask any doubts in the issue thread. 2. Report any bugs/feature request as github [new issue][new-issue], if it's already not present. 3. If you are starting to work on an issue, please leave a comment saying "I am working on it". 4. Once you are done with feature/bug fix, send a pull request according to the [guidelines]. [issue-list]: https://github.com/pythonindia/junction/issues/ [new-issue]: https://github.com/pythonindia/junction/issues/new [guidelines]: https://github.com/pythonindia/junction/blob/master/CONTRIBUTING.md ## License The MIT License (MIT) Copyright (c) 2014-15 Python Software Society of India Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.