2015-11-23 17:03:06 +01:00
|
|
|
# Getting started
|
|
|
|
|
|
|
|
We put some effort in getting you started as smooth as possible.
|
|
|
|
|
2016-02-04 14:38:14 +01:00
|
|
|
For first tests and development you can use the Docker platform to bootstrap your environment.
|
|
|
|
Docker is a software to run containers (a.k.a images in Docker's terminology) on a Linux machine.
|
|
|
|
|
|
|
|
We prepared a image which you can download and run out of the box:
|
|
|
|
|
2015-11-23 17:03:06 +01:00
|
|
|
1. Download the Docker toolbox: https://www.docker.com/docker-toolbox .
|
|
|
|
This toolbox includes a virtual machine as well all the Docker tools you need to the Docker container which is provided by us.
|
|
|
|
More instructions to get with can be found here: http://docs.docker.com/windows/started/
|
|
|
|
|
|
|
|
2. After installing the toolbox, open the "Docker Quickstart Terminal"
|
|
|
|
|
|
|
|
3. Start the latest S2SS container by running:
|
|
|
|
|
2016-02-04 14:38:14 +01:00
|
|
|
$ docker run rwthacs/s2ss
|
|
|
|
|
|
|
|
### To be added
|
|
|
|
|
|
|
|
S2SS ...
|
|
|
|
|
|
|
|
- is written in object-oriented C11
|
|
|
|
- is compiled with Clang / LLVM or GCC
|
|
|
|
- is fully based on open source software
|
|
|
|
- stands for Simulator-to-Simulator-Server
|
|
|
|
- is extensible with new node types
|
|
|
|
- heavily multi-threaded
|
|
|
|
- follows the Unix philosophy
|
|
|
|
- is separated into a library (libs2ss) and a few binaries (server, pipe, test, signal) which link against the lib.
|