Junction (old)

Build Status Gitter

NOTE: This document and linked sections may be out of date.

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.

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 and 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 and ask any doubts in the issue thread.

  2. Report any bugs/feature request as github 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.

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.