der-On / X-Plane-Flight-Planner

A web-based flight planning tool for the flight simulator X-Plane.
https://der-on.github.io/X-Plane-Flight-Planner/
47 stars 14 forks source link

MongoDB setup #14

Closed mcantsin closed 11 years ago

mcantsin commented 11 years ago

Thanks for this great piece of code!

When installing I had a little issue with setting up the mongodb user. You might want to include this explanation into the "how to install".

Flight-planner actually wants to write into a db called x-plane_apt_nav. When setting up a user for it, one has to do the following steps:

Start mongodb command line

mongo

Chose DB

use x-plane_apt_nav

add user for DB

db.addUser("foobar","password")

After this, put the according information into local_config.js in the flightplanner root folder.

der-On commented 11 years ago

Included it in the README. Thanks for your support