hrussel / web-application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tutorial for the KR on the Web course

@VU University Amsterdam and University of Amsterdam

This tutorial shows the basics for building a Semantic Web-based application by guiding you through some of the typical steps involved. This means:

  • Styling your webpage using CSS
  • Using client side scripting for manipulating the webpage
  • Using server side scripting for mediating between your own triple store and others
  • Posting information to your triple store
  • Using reasoning facilities of your triple store

The code is documented and explains each of these steps. All server-side code is in src/tutorial.py. The client-side code is in src/static/js/tutorial.js. Feel free to reuse the code in your own projects (perhaps even fork this GitHub repository, that would be cool)

It also makes sense to look at the tools document for a description of the tools that you should probably have running for this course to succeed.

Requirements

To get this thing up and running on a local machine, you need the following:1

  • Python 2.7
  • (OPTIONAL) Virtualenv (pip install virtualenv) 2
  • (OPTIONAL) Setup the virtualenv in the directory of this repository (virtualenv .)
  • (OPTIONAL) Activate the virtualenv (source bin/activate on linux-like systems) 3
  • Install the necessary packages (install using pip install -r requirements.txt)
  • Use the course-provided Stardog endpoint for your group, by changing the TUTORIAL_REPOSITORY variable in both src/tutorial.py and src/static/js/tutorial.js.
  • (OPTIONAL) local install:4
    • By default, the script assumes a Stardog database with the name 'tutorial' running at http://localhost:5820/tutorial (security disabled).
    • The database should have reasoning enabled, and "SameAs" reasoning should be set to "Full".
    • If you want to use a different name or location (i.e. not running on localhost, port 5820) you need to set the TUTORIAL_REPOSITORY variable in src/tutorial.py
    • Start your Stardog server with stardog-admin server start --disable-security

Starting the Tutorial

Once everything is ready:

  • change dir into the src directory, and
  • run python tutorial.py.

The tutorial is then running at http://localhost:5000 .

Footnotes

1 This assumes you're running on a linux/mac style system. For Windows use a backslash \ instead of a forward slash / for directories.

2 The advantage of using virtualenv is that this creates a nicely self-contained Python environment in which you can install the packages needed for your application. This way your global environment does not get clogged, and you avoid potential incompatibilities between different Python projects.

3 You need to activate the virtual environment every time you want to start your application from a new terminal session.

4 The tutorial can be ran against the course-provided Stardog instance (recommended) or a local installation of Stardog. For a step-by-step guide on installing stardog and other useful tools for the course, see the tools document.

About

License:Apache License 2.0


Languages

Language:HTML 46.4%Language:JavaScript 40.1%Language:Python 13.5%