Wye is a software that connects colleges and organizations looking to conduct workshops on various FOSS based technologies with experienced professionals to help students learn the programming language along with the real time usage in different domains.
It is a web application built using python and Django.
PythonExpress (https://pythonexpress.org) is used for Python and related technologies and it is deployed using wye project.
wye is pronounced as #Y
How to setup
(If you need detailed step-by-step guide, read the documentation here)
- Create a PostgreSQL 9.3 database
- It is advised to install all the requirements inside virtualenv, use virtualenvwrapper to manage virtualenvs.
cp settings/dev.sample.py settings/dev.py
createdb wye
pip install -r requirements/dev.txt
python manage.py migrate
python manage.py sample_data
python manage.py runserver
Testing
It's highly encouraged that you write test for any new feature/bug fixes. Find all the existing test inside tests/
folder. To run the test locally, run the following command:
py.test
You can invoke py.test
with various command line arguments, that can drastically improve your test writing/running experience. Read useful tip/tricks at docs/testing.md.
Login Details
Email: admin@pythonexpress.org Password: 123123
Making Frontend Changes
Make sure you have nodejs & npm installed
$ npm install
$ gulp // This starts a watcher to watch for file changes
Community
Contributing
- Choose an issue and ask any doubts in the issue thread.
- Report any bugs/feature request as github new issue, if it's already not present.
- If you are starting to work on an issue, please leave a comment saying "I am working on it".
- Once you are done with feature/bug fix, send a pull request according to the guidelines.
License
This software is licensed under The MIT License(MIT). See the LICENSE file in the top distribution directory for the full license text.