Download & Install webAppOS
Here you can find the installation instructions.
Download
Using a git client
|
Using zip
|
From the command line run:
git clone https://github.com/LUMII-Syslab/webAppOS.git
|
Download webAppOS sources, unzip the archive,
and rename "webAppOS-master" to "webAppOS".
If you prefer to do that from the *NIX command line, run:
wget https://github.com/LUMII-Syslab/webAppOS/archive/master.zip
unzip master.zip
mv webAppOS-master webAppOS
|
Install
First, you will need Java Development Kit 8 or later installed. It will be used
to compile the sources during the installation process. After compiling,
only Java Runtime Environment (the same version or above) is required.
From the *NIX command line:
|
From the Windows command line:
|
cd webAppOS/src
./gradlew build
./gradlew install
cd ../..
|
cd webAppOS\src
gradlew build
gradlew install
cd ..\..
|
Configure for the First Time
First, you will need Java Development Kit 8 or later installed. It will be used
to compile the sources during the installation process. After compiling,
only Java Runtime Environment (the same version or above) is required.
From the *NIX command line:
|
From the Windows command line:
|
cd webAppOS/dist/apps/Login.webservice/
cp webservice.properties.template webservice.properties
pico webservice.properties
cd ../../../..
cd webAppOS/dist/etc
copy webappos.properties.template webappos.properties
pico webappos.properties
cd ../../..
|
cd webAppOS\dist\apps\Login.webservice
copy webservice.properties.template webservice.properties
notepad webservice.properties
cd ..\..\..\..
cd webAppOS\dist\etc
copy webappos.properties.template webappos.properties
notepad webappos.properties
cd ..\..\..
|
Run
From the *NIX command line
|
From the Windows command line
|
cd webAppOS/dist/bin
./webappos
|
cd webAppOS\dist\bin
webappos
|