Django project for the Portland Python User Group
All are welcome to contribute, please follow the issues and submit a pull request.
You'll need to have the following installed in your development environment.
Install by running:
$ git clone https://github.com/pdxpython/pdxpython.git
$ cd pdxpython
$ virtualenv --no-site-packages venv
$ source venv/bin/activate
$ pip install -r requirements/development.txt
$ cp development.env.dist development.env
Add your Meetup.com API Key to the development.env file. i.e. "export MEETUP_API_KEY=my-api-key" You can obtain your key at https://secure.meetup.com/meetup_api/key/.
$ source development.env
$ python pdxpython/manage.py syncdb
$ npm install
$ grunt
$ ./runserver.sh
Then open a browser and visit localhost:8000. You should see a list of upcoming events.
The project is licensed under the BSD license.