https://github.com/hrichiksite/appinventorrendezvousserver
https://github.com/hrichiksite/appinventorrendezvousserver
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hrichiksite/appinventorrendezvousserver
- Owner: hrichiksite
- License: mit
- Created: 2020-09-14T08:00:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-14T08:01:47.000Z (about 5 years ago)
- Last Synced: 2025-02-15T11:47:50.669Z (8 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MIT App Inventor Rendezvous Server
This directory contains the code needed to run the MIT App Inventor
Rendezvous Server version 2.Version 2 supports both our “legacy” httpd connection to the MIT AI2
Companion and the newer WebRTC based system.# Installation
This code is designed to run in a docker container. You can build the
needed image simply with:docker build -t .
Run the resulting image on your server as:
docker run --restart=always -d -p 80:3000 --name=rendezvous
is a name you pick for your image. The image expects (and
should create) a docker volume which it mounts in “/data”. An sqlite3
database will be created here which will gather statistics. Keep an
eye on this database as it will grow without bound. You may need to
trim it periodically.Logs for the running server are in /var/log/supervisor within the
container. These logs are automatically managed (trimmed as needed) so
you need not worry about them. They mostly contain debugging output
which isn’t of much value (and which a newer version may flush
completely).