Skip to content

Commit 43b777a

Browse files
author
Saurabh Kumar
committed
prepare release notes for 0.1.0
1 parent 2b7ddb4 commit 43b777a

2 files changed

Lines changed: 58 additions & 5 deletions

File tree

docs/index.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/index.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Junction [![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)
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

docs/release_notes.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# Release Notes
22

3-
## [0.2.0]
4-
5-
- ...
63

74
## [0.1.0]
85

9-
[Under Development]
6+
**Date:** 8 February 2015
107

118
- initial release with core functionality working
129

0 commit comments

Comments
 (0)