Giter VIP home page Giter VIP logo

runestoneserver's Introduction

Runestone Interactive Server and API

'Stories in Ready' Join the chat at https://gitter.im/bnmnetp/runestone

Build Status buildstatus

Relationship to other Runestone components

If you just want to use Runestone's capabilities to build pre-existing books or to make your own books using Sphinx and directives like ActiveCode, then you won't need this repository at all.

This repository has the extra materials needed for running a web2py server with extra features for running courses using Runestone books and tools.

Installation

  1. Install python.

    First, make sure you have Python 2.7 installed. Web2py has not yet been ported to Python3. Even if you don't care about the web2py part of the install, the version of paverutils on pypi is still a Python 2.x package, although the development version is now at 3.x.

  2. Install and make a Python virtualenv

    Note, development works well with a Python virtualenv If you don't have root privileges on your computer I strongly recommend you install virtualenv and install all of the dependencies there.

    • Documentation here: https://virtualenv.pypa.io/en/stable/

    • Video here: https://www.youtube.com/watch?v=IX-v6yvGYFg

    • For the impatient:

      $ sudo pip install virtualenv
      $ virtualenv /path/to/home/MyEnv
      $ source /path/to/home/MyEnv/bin/activate
      
    • You will need to do the last command every time you want to work on RunestoneServer. If you have not used Python virtual environments before I strongly recommend reading the docs or watching the video

  3. Install lots of other dependencies

    Ubuntu

    On a vanilla Ubuntu (16.04) installation you will need to do at least the following:

    sudo apt-get install python-pip
    sudo apt-get install libfreetype6-dev
    sudo apt-get install postgresql-common postgresql postgresql-contrib
    sudo apt-get install libpq-dev
    sudo apt-get install libxml2-dev libxslt1-dev
    

    OS X

    On an OS X installation You must install Xcode and the command line tools. Free from the app store. Then, I recommend you install homebrew (http://brew.sh) then run the following commands:

    xcode-select --install
    brew install postgresql
    brew install libpng
    brew install freetype
    

    When you install postgresql make sure you follow the instructions at the end of the install for getting the server started. On a mac you can ignore the additional configuration instructions for postgres given below. For a recent homebrew just do brew services start postgresql to start the postgres database server. Your user will already be configured as an administrative user.

    Windows

    On Windows machines, install PostgreSQL for Windows. (Tested with the EnterpriseDB interactive installer for PostgreSQL v 9.6).

  4. Install web2py. The easiest way to do so is to download the Source Code distribution from http://www.web2py.com/init/default/download. Here is a direct link to the zip archive. After you download it, extract the zip file to some folder on your hard drive. (web2py requires no real "installation"). I avoid the web2py.app installation on OS X as it messes with the Python path. On Windows, the web2py.exe is also problematic because it won't find modules installed in a virtualenv.

  5. Get familiar with the Runestone Components, which were installed with pip. They come from https://github.com/RunestoneInteractive/RunestoneComponents and there are good quick start instructions there.

  6. Clone this repository into the web2py/applications directory. If you might be contributing to the project, please fork this repository first and then do a local clone onto your machine, in the web2py/applications. You will contribute back to the project by making pull requests from your fork to this one. When you make the clone you should clone it into runestone rather than the default RunestoneServer . All the web2py stuff is configured assuming that the application will be called runestone.

    There are a couple of prerequisites you need to satisfy before you can build and use this eBook. The easiest/recommended way is to use pip. You can simply install all dependencies by running the following command in main runestone directory:

    # cd /path/to/web2py/applications
    # git clone https://github.com/RunestoneInteractive/RunestoneServer runestone
    # cd runestone
    # pip install -r requirements.txt
    
  7. Clone the book that you want to use, into the web2py/applications/runestone/books directory. You can see some of the available books at https://github.com/RunestoneInteractive. Again, if you might contribute back to the book, please fork the book repository first and then do a local clone onto your machine.

  8. Set up your local database

    • Configure Postgresql (or you can try mySQL, but there may be some issues with field lengths with that.)

    • Create a database

      • For Ubuntu you will need to do the following first:

        $ sudo -i -u postgres
        $ postgres@ubuntu:~$ createuser --interactive -P
        Enter name of role to add: <your name here>
        Enter password for new role: <a password for this user>
        Enter it again: <again>
        Shall the new role be a superuser? (y/n) y
        Password: <password for the default, postgres user>
        
      • For Windows, use the -U postgres flag to run all commands in the postgres role, which is automatically created during installation.

        C:\> "C:\Program Files\PostgreSQL\9.6\bin\createuser" --interactive -U postgres -P
        Enter name of role to add: <your name here>
        Enter password for new role: <a password for this user>
        Enter it again: <again>
        Shall the new role be a superuser? (y/n) y
        Password: <password for the default, postgres user>
        
      • On both Mac and Ubuntu you can now do the following; for Windows, use "C:\Program Files\PostgreSQL\9.6\bin\createdb" --owner=<yournamehere> -U postgres runestone. Enter the password for the default, postgres user (not for the newly-created user).

    $ createdb --owner=<yournamehere> runestone
    
    $ exit
    
    psql runestone
    psql (9.5.3)
    Type "help" for help.
    
    runestone=# \q
    $
    
    • Figure out your database connection string. It will be something like postgres://username:passwd@localhost/dbname
    • Tell web2py to use that database:
      • Create a file applications/runestone/models/1.py, with the following line: settings.database_uri = '<your_connection_string>'. NOTE: Don't put this inside an if statement, like it shows in models/1.prototype.
      • If you're running https, edit settings.server_type in models/0.py.
      • Set and export environment variables for DBHOST, DBUSER, DBPASS and DBNAME
  9. Run web2py once, so that it will create all the tables.

  10. Build the book.

    $ cd web2py/applications/runestone/books/<your book>
    $ runestone build
    $ runestone deploy
    
    • At the end of the build step it should say trying alternative database access due to No module named pydal and then, if things are working correctly, start outputting the names of the chapters.

Create an account for yourself

There are two methods you can use here. If the book you built above is thinkcspy or pythonds then there is an easy method. If you built some other custom book then it's a bit more work.

The Easy Way

  • restart web2py if it's not running
  • go to localhost:8000/runestone
  • click on the register button

The Harder Way

  • restart web2py if it's not running
  • go to localhost:8000/runestone/appadmin
  • create a course for the book
    • insert new courses
    • course_id can be blank
    • course name should be your book name, the directory name inside books/ (no spaces)
      • date is in format 2015-08-29
      • institution doesn't matter
      • base course should be same as course name
  • create an account for yourself
    • insert new auth_user
    • cohort id should be "id"
    • Course name should be the course name from above (not a number)
    • Do not make up a registration key or a reset password key; leave them blank
  • Make yourself the instructor for the course.
    • insert new course_instructor
    • Course is the number for the course (probably 5 if you just inserted one additional course)

Documentation

Documentation for the project is on our official documentation site This includes the list of dependencies you need to install in order to build the books included in the repository, or to set up a complete server environment.

The Runestone Tools are not only good for authoring the textbooks contained in this site, but can also be used for:

  • Making your own lecture materials
  • Making online quizzes for use in class
  • Creating online polls for your course

What's New

  • We just recently updated the activecode directive to support two new languages: Javascript and HTML.

How to Contribute

  1. Get a github (free) account.
  2. Make a fork of this project. That will create a repository in your account for you to have read/write access to. Very nice, complete instructions for making a fork are here: https://help.github.com/articles/fork-a-repo
  3. Clone the repository under your account to your local machine.
  4. Check the issues list, or add your own favorite feature. commit and pull to your fork at will!
  5. test
  6. Make a Pull Request. This will notify me that I should look at your changes and merge them into the main repository.
  7. Repeat!

How to Contribute $$

As our popularity has grown we have server costs. We were also able to make great progress during the Summer of 2013 thanks to a generous grant from ACM-SIGCSE that supported one of our undergraduate students. It would be great if we could have a student working on this all the time.

If this system or these books have helped you, please consider making a small donation using gittip

More Documentation

I have begun a project to document the Runestone Interactive tools

  • All of the Runestone Interactive extensions to sphinx:
    • Activecode -- Interactive Python in the browser
    • Codelens -- Step through code examples and see variables change
    • mchoicemf -- multiple choice questions with feedback
    • mchoicema -- multiple choice question with multiple answers and multiple feedback
    • fillintheblank -- fill in the blank questiosn with regular expression matching answers
    • parsonsproblem -- drag and drop blocks of code to complete a simple programming assignment
    • datafile -- create datafiles for activecode
  • How to write your own extension for Runestone Interactive

Enable Bug Reporting on Github

The Runestone server now has a controller to allow users to enter bug reports without needing a github account. But for this to work you will need to configure settings.github_token in models/1.py

Creating Your Own Textbook

To find instructions on using the Runestone Tools to create your own interactive textbook, see the file in this directory named README_new_book.rst.

Browser Notes

Note, because this interactive edition makes use of lots of HTML 5 and Javascript I highly recommend either Chrome, or Safari. Firefox 6+ works too, but has proven to be less reliable than the first two. I have no idea whether this works at all under later versions of Internet Explorer.

runestoneserver's People

Contributors

acecodes avatar aerenchyma avatar asuldan avatar bjones1 avatar bnmnetp avatar bnmtest avatar conzty01 avatar davidranum avatar dcreilly avatar ericsonga avatar flysaiah avatar gardhi01 avatar gitter-badger avatar hangde01 avatar hewner avatar isaacdontjelindell avatar ivipul avatar kracekumar avatar mcoirad avatar millro04 avatar nickdotreid avatar olberger avatar presnick avatar ranum avatar rokimomi avatar sbellem avatar stevenjamesmoore avatar victornorman avatar waffle-iron avatar wysockin avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.