An open API service indexing awesome lists of open source software.

https://github.com/pieye/nimbus-web

Web visualization of nimbus
https://github.com/pieye/nimbus-web

3d camera tof-camera web websockets

Last synced: 27 days ago
JSON representation

Web visualization of nimbus

Awesome Lists containing this project

README

        

# nimbus-web
Welcome to nimbus-web. Nimbus-web are the official web pages of the nimbus 3D web interface.

# Prerequisites
You must install nimbus-server (see https://github.com/pieye/nimbus-userland)
Check if nimbus-server is running:
```sudo systemctl status nimbusServer.service ```
You can start it with:
```shell
sudo systemctl start nimbusServer.service
```
or stop it with:
```shell
sudo systemctl stop nimbusServer.service
```

# Getting Started

Install nginx and git
```shell
sudo apt-get install nginx git
```

Clone this repository
```shell
git clone https://github.com/pieye/nimbus-web.git
```

Edit file /etc/nginx/sites-available/default (with sudo) and change line 41 from
```
root /var/www/html;
```
to
```
root /home/pi/nimbus-web;
```

restart nginx
```
sudo service nginx restart
```

Open a browser with the IP address of your raspberry pi.

# Contributing
Contributions are very welcome!

# Authors
Markus Proeller - Javascript classes

Sebastian Schmidt - UI

See also the list of contributors who participated in this project.

# License
This project is licensed under the GPLv3 License - see the LICENSE file for details

# 3rd party libraries
We use the following 3rd party libraries:
- three.js, which is licensed under MIT license, see https://github.com/mrdoob/three.js
- jquery, whcich is licensed under MIT license, see https://github.com/jquery/jquery