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
- Host: GitHub
- URL: https://github.com/pieye/nimbus-web
- Owner: pieye
- License: gpl-3.0
- Created: 2019-04-24T07:36:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-22T07:45:36.000Z (almost 5 years ago)
- Last Synced: 2025-04-30T12:15:18.079Z (about 1 month ago)
- Topics: 3d, camera, tof-camera, web, websockets
- Language: JavaScript
- Size: 288 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 classesSebastian 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