Giter Club home page Giter Club logo

simva-infra's Introduction

SIMple VAlidation (SIMVA)

SIMVA

SIMVA is a tool that helps Serious Games (SGs) developers / researchers to validate the efectiveness of SGs and to facilitate the application of Serious Games Learning Analytics in SGs.

Like any other educational tool, the traditional way of evaluating the effectiveness of the tool is through experiments that require a pre-post tests. Usually this is is done on paper or, in the best case scenario, electronically, but in the end these tests are disconected from the experiments themselves.

Moreover, SGs open new oportunities of applying a stealth assessment approach to evaluate players' performance. Usually this approach is implemented based on analytics that are gathered during the gameplay.

To be precise, SIMVA tool aims to simplify the possible issues:

  • Before the experiments:
    • Managing users & surveys
    • Providing anonymous identifiers to users
  • During the experiments:
  • Pretest-Game-Postest
    • Collecting and storing surveys and traces data (xAPI-SG)
    • Relating different data from users (GLA, tests)
  • After the experiments:
    • Simplifying downloading and analysis of all data collected

This respository allows you to to launch a complete SIMVA environment.

Instructions

  1. Clone this repository
  2. Verify that you have latest Vagrant and VirtualBox (tested with 6.0)
  3. Open a terminal in the cloned directory and run vagrant up

Note: The first time you run this command it will take a long time because Vagrant needs to download, aprovision and install the base required software.

  1. run vagrant ssh to get inside VM
  2. run cd docker-stacks
  3. run ./simva install

Note: The first time you run this command it will take a long time because it is required to download all docker images required for SIMVA.

  1. run ./simva start to start all containers.

Note: The first time you run this command it will take a long time because all componentes need to initialize.

Acknowledgements

Authors of this project were supported by:

Universidad Complutense de Madrid logo IMPRESS Logo Erasmus+ Program Logo

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

Notes

By default Vagrant maps the following ports:

  • 8080 (host) -> 80 (guest)
  • 8443 (host) -> 443 (guest)

To simplify things you may want to apply the following instructions in order to map to regular ports using the OS firewall / capabilities.

(Linux) redirect ports using iptables

sudo iptables -I INPUT 1 -p tcp --dport 8443 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport 443 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT
sudo iptables -t nat -I PREROUTING 1 -p tcp --dport 443 -d 127.0.0.1 -j REDIRECT --to-ports 8443
sudo iptables -t nat -I PREROUTING 1 -p tcp --dport 80  -d 127.0.0.1 -j REDIRECT --to-ports 8080
# https://serverfault.com/questions/211536/iptables-port-redirect-not-working-for-localhost
# PREROUTING isn't used by the loopback interface, you need to also add an OUTPUT rule:
sudo iptables -t nat -I OUTPUT -p tcp -o lo -d 127.0.0.1 --dport 80 -j REDIRECT --to-ports 8080
sudo iptables -t nat -I OUTPUT -p tcp -o lo -d 127.0.0.1 --dport 443 -j REDIRECT --to-ports 8443

(Windows) redirect ports using netsh

See:

simva-infra's People

Contributors

jujusb avatar imartinezortiz avatar synpheros avatar victorma avatar manuel-freire 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.