documentation

main
km0 1 year ago
parent 48c2580de4
commit fac5b285b7

@ -4,8 +4,6 @@
A small app for collecting drawings in real time. Runs on a small express server that connects sources (where to draw) and destinations (where to display) via websockets.
_(hei! this is still work in progress! currently adapting some aspects in the server in order to: a. make it open-end and not strictly related to vvvv, and b. make it possible to have more destinations connected to receive the drawings at the same time)_
## Setup
Clone the repo , move to the directory and install the dependencies using your favourite package manager ([npm](https://www.npmjs.com/), [yarn](https://yarnpkg.com/), etc.).
@ -33,3 +31,109 @@ Then open your browser to `localhost:3000` and there you can draw.
If you open another tab and navigate to `localhost:3000/destination`, there you will receive the drawings. This destination page is just an example!
The app is meant to be open-end, meaning that the destination of the drawing is up to you! (ah ah! less work for us). Originally it was coupled with [vvvv](https://visualprogramming.net/), but it can be implemented with any platform supporting the websocket protocol.
## Going online
Eventually you want to put online your drawing app.
To be able to use this app on the [Soupboat](hub.xpub.nl/soupboat) (or other servers connected in the [hub.xpub.nl](hub.xpub.nl) ecosystem) some additional configurations are needed.
Note that the following details are tailored to the particular case of our server. Other instances could require different setups.
This is one possible workflow.
Clone the repo and install the requirements as you would do locally.
```
git clone https://git.xpub.nl/kamo/drw
cd drw
npm install
```
### Environmental variables
There are a couple of environmental variables to be set: one refers to the port where to mount the application, the other is related to the prefix to add to the application urls.
```
nano .env
```
Will create a new `.env` file where to add the values for this specific environment.
In the case of the soupboat, for example:
```
PORT=3154
PREFIX=/soupboat/drw/
```
Save and exit.
The port is where Express will mount the application. This is by default set to 3000, but in this case we need to pick a port not already in use.
When deciding which port to use, check your NGINX configurations file (see next section), or simply test if the port you want is already in use.
`sudo lsof -i:3000`
For example, will print the process currently using the port 3000. If nothing is printed out, then the port is available.
Read more about it here: [Check if port is in use Linux](https://www.cyberciti.biz/faq/unix-linux-check-if-port-is-in-use-command/)
The prefix variable is a way to deal with the _hub.xpub.nl_ ecosystem. Here our base url is `hub.xpub.nl`. Notice that is missing the `/soupboat/drw/` part.
The deal of the prefix is to leave out from the code these part of the address, that otherwise should be repeated in every url and navigation element. This also make the code a bit more portable, meaning that you can test it locally and online without messing around with the urls in the code.
The app is written in order to provide some default values if an `.env` file is not found, and that's why it works locally even without specifying any environmental variables.
### NGINX Configuration
To make it works behind a reverse-proxy open the NGINX configuration file
(it requires root privileges!)
```
sudo nano /etc/nginx/sites-available/default
```
and inside the server section add a new location:
```
server {
#note that your configurations may differ!
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html
# ADD THIS SECTION -------
location /drw/ {
proxy_pass http://localhost:3000/soupboat/drw/;
include proxy_params;
proxy_set_header Host $http_host; # 4
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
} # END OF SECTION -------
}
```
The lines that you should edit according your configurations are:
- `location /drw/`
The name of the location `/drw/` is up to you, and it's the address where the app will be served. In this case will be `hub.xpub.nl/soupboat/drw/`.
- `proxy_pass http://localhost:3000/soupboat/drw/;`
The very same name, as well as eventual prefixes, need to be specified in the line of `proxy_pass`.
The port, in this example set to `3000`, it's the port where Express is mounting the application. By default is 3000, but you can edit it according to the configurations of the express server.
The three `proxy_set_header` Host, Upgrade and Connection are necessary to make the Websocket connection work.
Once you add these info save and exit.
To check that the NGINX configuration file is ok run
`sudo nginx -t`
If it prints that everything is fine, reload nginx to apply the configurations.
If there are errors instead reopen the configurations file and fix them!
**Watch out**: reloading nginx when the configurations are broken means disaster. Always run the test before reloading!
Then you can start the app as you would do locally.
`node server.js`

Loading…
Cancel
Save