This is the content repository for the RIT Department of Interactive Games and Media Humanitarian Free/Open Source Software Course (HFOSS). This course is a required part of the RIT Academic Minor in Free/Open Source Software and Free Culture (a first at any University in the United States!)
This repository contains course-specific static content, and should be used in conjunction with the ofCourse courseware, distributed at https://pypi.python.org/pypi/ofcourse.
Start by forking the repository on Github. Point your browser to https://github.com/ritjoe/hfoss and then click the "Fork" button in the top right corner of the page.
Before you can do anything with this (run the webserver locally, or any of the scripts) you'll need to setup and activate a python virtualenv. Run the following at the command prompt...
If you don't have virtualenv installed yet, try::
$ sudo easy_install virtualenv virtualenvwrapper
If you're using a distro like Fedora or Ubuntu, you should try this instead::
$ sudo dnf install python-virtualenv
$ sudo apt-get install python-virtualenv
Once you have virtualenv installed, you will install be able to run::
$ cd code
$ git clone [email protected]:YOUR_USERNAME/hfoss.git
$ virtualenv --no-site-packages -p python2 hfossenv
$ . hfossenv/bin/activate
$ virtualenv --no-site-packages -p python2 hfossenv
$ hfossenv/Scripts/activate.bat
$ git clone [email protected]:YOUR_USERNAME/hfoss.git
Back in the windows command prompt::
$ cd hfoss
Once you've forked the repo, and activated your virtual environment, you can pip install the courseware that serves up the content of the course. Simply run::
$ pip install ofcourse
Once you've done pip install ofcourse
, you can type::
$ ofcourse run
This should run the courseware on the local host, so you can point a browser at http://127.0.0.1:5000 to view it.
Please see the ofCourse documentation about your options for deploying the course and course content to other hosting.
Unless otherwise noted, original lectures and course materials created by the Instructor within this repository are licensed Creative Commons Attribution-Share Alike 4.0 International
Unless otherwise noted, original source code created by the Instructor within this repository is licensed Apache 2.0.