{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Getting Started" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Vizic** uses MongoDB for data storage, and an added Jupyter server extension to direct catalog request to the database. Therefore the server extension needs to be specified when starting the Jupyter Notebook App from the command line." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To start the Notebook App:\n", "\n", "\tjupyter notebook --NotebookApp.nbserver_extensions=\"{'vizic.mongo_ext.extension':True}\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In addition, a running MongoDB instance is requied. To start a new instance on the local machine, enter the following command in a new terminal window:\n", " \n", " mongod" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "On Linux machines, MongoDB instance can be also started with:\n", "\n", " sudo service mongod start" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "