Go to file
Thomas FORGIONE d904a4a472 Corrected makefile (for server to start) and re-enabled collisions 2016-01-11 16:45:05 +01:00
analysis Some commits 2016-01-04 09:29:13 +01:00
js Corrected makefile (for server to start) and re-enabled collisions 2016-01-11 16:45:05 +01:00
server Monster commit 2016-01-08 16:05:09 +01:00
sql Monster commit 2015-10-20 16:30:52 +02:00
static Added check.sh, and gitignores 2015-10-06 16:50:45 +02:00
utils Some commits 2016-01-04 09:29:13 +01:00
.gitignore Added check.sh, and gitignores 2015-10-06 16:50:45 +02:00
README.md README improved 2016-01-04 17:56:25 +01:00
server.js Missing files 2016-01-04 17:54:14 +01:00

README.md

3D Interface

A prototype for a user-friendly 3D interface allowing to browse 3D scenes / models written with Node.js.

It is hosted by OpenShift at 3dinterface.no-ip.org.

Database setup

First you need to configure the database. You can create a postgres database where you want, and you can initialize it by running the script sql/backup.pgsql.

Nodejs configuration

Then, you have to set up nodejs to access to your database. Basically, you have to create a file private.js in the server directory at the root of the repository looking like this :

module.exports.url = ... // the url to connect to your database

module.exports.secret = ... // A secret string used to hash stuff

Compiling the static js files

First, cd to utils/. Here you'll find a script build_all.sh that, as its name suggests, builds all. By default, it minifies the code, but you can pass the option --dev to avoid minifying (which is a quite long operation).

If it worked, you should see lots of files in *.min.js in your static/js directory, and a geo.min.js in your lib (at the root of the repository).

Running the server

As usual with NodeJS, it's quite easy to test. Just ensure you have node installed on your machine, clone this repo somewhere, and then, in the repo do

cd server
npm install
node server.js

Note : you will need to compile the static js files first in order to start the server

You should be able to go to localhost:4000 and see the result.

Please note that some static files (some meshes / textures) are not on this repository (especially the heavy ones).

Developping

If you want to dev on this project, the utils/demon.sh may help you : it is based on nodemon (that basically restarts the server everytime there is a change in the code) and inotifywait (that basically recompiles everything when there is a modification). To use it, just cd to utils and run demon.sh (note that it doesn't minify the code since this operation is heavy and too long to redo everytime there is a change).