Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlech/robertalab
The programming environment »Open Roberta Lab" by Fraunhofer IAIS enables children and adolescents to program robots. A variety of different programming blocks are provided to program motors and sensors of the robot. Open Roberta Lab uses an approach of graphical programming so that beginners can seamlessly start coding. As a cloud-based application, the platform can be used without prior installation of specific software but runs in any popular browser, independent of operating system and device.
https://github.com/dlech/robertalab
Last synced: about 1 month ago
JSON representation
The programming environment »Open Roberta Lab" by Fraunhofer IAIS enables children and adolescents to program robots. A variety of different programming blocks are provided to program motors and sensors of the robot. Open Roberta Lab uses an approach of graphical programming so that beginners can seamlessly start coding. As a cloud-based application, the platform can be used without prior installation of specific software but runs in any popular browser, independent of operating system and device.
- Host: GitHub
- URL: https://github.com/dlech/robertalab
- Owner: dlech
- Created: 2015-12-04T23:13:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T18:24:33.000Z (about 9 years ago)
- Last Synced: 2024-10-15T21:35:26.800Z (3 months ago)
- Language: Java
- Homepage: http://lab.open-roberta.org
- Size: 346 MB
- Stars: 1
- Watchers: 2
- Forks: 87
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Open Roberta Lab
================Getting started with your own deployment of the OpenRoberta programming environment.
### Introduction
After a fresh git clone you get the **robertalab** project folder.
It includes everything you need to setup and extend your own browser programming
environment. License information is available in the **docs** folder.Things you need on your computer:
* Java 1.7
* Maven
* Git
* Web browserPlease also check our [wiki](http://wiki.open-roberta.org) for a detailed install
instruction, development procedure, coding conventions and further reading. Please
also checkout our project [issue tracker](http://jira.open-roberta.org).### Fast installation with maven
#### Step 1: Clone the repository and compile
git clone git://github.com/OpenRoberta/robertalab.git
cd robertalab/OpenRobertaParent
mvn clean installGet a coffee! Might take a couple of minutes.
A successful build looks like:
[INFO] ---------------------------------------
[INFO] Reactor Summary:
[INFO] RobertaParent ..................SUCCESS
[INFO] OpenRobertaShared ..............SUCCESS
[INFO] OpenRobertaServer ..............SUCCESS
[INFO] OpenRobertaRuntime .............SUCCESS
[INFO] ---------------------------------------
[INFO] BUILD SUCCESS#### Step 2a: Starting your own server instance using a unix-like shell (on either lin* or win*).
cd .. # return to the root folder
./ora.sh --start # start the server using default propertiesYou can also run `./ora.sh --help` for more options.
#### Step 2b: Starting your own server instance without using the shell script
cd ../OpenRobertaServer # go to the folder of the server resources and the database
java -cp target/OpenRobertaServer-1.0.0-SNAPSHOT.jar de.fhg.iais.roberta.main.ServerStarter # start#### Step 3: Accessing your programming environment
Start your browser at: http://localhost:1999
That's it!