Please note: all tools/ scripts in this repo are released for use "AS IS" without any warranties of any kind, including, but not limited to their installation, use, or performance. We disclaim any and all warranties, either express or implied, including but not limited to any warranty of noninfringement, merchantability, and/ or fitness for a particular purpose. We do not warrant that the technology will meet your requirements, that the operation thereof will be uninterrupted or error-free, or that any errors will be corrected. Any use of these scripts and tools is at your own risk. There is no guarantee that they have been through thorough testing in a comparable environment and we are not responsible for any damage or data loss incurred with their use. You are responsible for reviewing and testing any scripts you run thoroughly before use in any non-testing environment.
A recreation of the interactive mongoDB shell for the browser.
There are three components related to the shell captured in this repo:
- The server webapp - A flask application that provides a RESTish API for
interacting with MongoDB. - The tutorial static html page - A static html file that initializes a
shell, and hosts a simple tutorial. - The init-verification webapp - An api for confirming the validitiy of the
contents of a users' databases.
Requirements:
- mongoDB
- node.js
- [Python 2.6+]
- virtualenv
After the above requirements are installed, clone the repo:
git clone git@github.com:10gen-labs/mongo-web-shell.git && \
cd mongo-web-shell
Create and activate a virtualenv:
virtualenv venv && \
source venv/bin/activate
In addition to some git submodules, the back-end dependencies are managed by pip, while the front-end dependencies are managed via npm.
git submodule init && git submodule update
pip install -r requirements.txt
npm install
Grunt is used to build the front-end code.
npm install -g grunt-cli
All committed code should be linted.
Front-end: jshint. Installation will occur in the package.json
dependencies.
Back-end: pep8. Installation via pip within the virtual environment is recommended:
pip install pep8
The default Grunt task will build the front-end code.
grunt
To perform this build whenever any source files change, use the watch
target.
grunt watch
After the installation and build above, launch a mongod instance that will be accessed by the back-end server:
mongod
Make sure that you have activated your virtualenv
CONFIG_FILENAME
- the configuration file that Flask will use to start the server, see sample.yml
for an example.
Also see webapps/lib/conf.py
for different default configuration paths depending on environment. This path is resolved
relative to the root directory of the repo unless it begins with a /, in which case it will be evaluated as absolute.
MWS_FLASK_STATIC
- if set, this will have Flask serve static the static files, note that this should only be used
for development, and production webservers such as apache (see below) or nginx should be used for production.
The server webapp can be run with:
python -m webapps.server.app
To set any environment variables for the script, use the env
command. For example to run the server using the sample
configuration file and to use Flask to serve static files, use the following command from the root of the git repo:
env CONFIG_FILENAME=sample.yml MWS_FLASK_STATIC='' python -m webapps.server.app
Make sure that you've run grunt
to build the assets first.
Note - for production, both for performance and security concerns, static assets should be served through apache or nginx, not Flask.
Lint the code and run the test suite via the test
target.
grunt test
To lint by hand, use the jshint
target.
grunt jshint
To test in a browser environment, open frontend/SpecRunner.html
.
From within a virtual environment:
python run_tests.py
Lint via pep8.
pep8 mongows tests run*.py
In a development environment, you can specify configuration in a number of ways.
You can choose to specify configurations by
- Specify a yaml file containing configuration. For example, on my system I specify this: export CONFIG_FILENAME=sample.yml
Alternatively, you can specify an absolute path: export CONFIG_FILENAME=/home/ian/development/mongo-web-shell/sample.yml
In staging and production, because apache doesn't play well with environment variables, we default to /opt/10gen/trymongo-/shared/config.yml
- Any of the variables that appear in
webapps/lib/conf.py
can be overridden with environment variables - they will override anything in the configuration file.
See the project wiki.