Code Monkey home page Code Monkey logo

multiexplorer's Introduction

MultiExplorer

Installation for local personal use

Checkout the code:

git clone [email protected]:priestc/MultiExplorer.git

Then run the install script

cd MultiExplorer
python install.py

Now start the server by running the following command:

python run_server.py

Point our browser to http://localhost:8000 and you should see MultiExplorer!

Installation to a server for public use

Checkout the code:

git clone [email protected]:priestc/MultiExplorer.git

Then run the install script:

cd MultiExplorer
python install.py

Depending on how much load you expect to see you might want to swap out SQLite with a more sophisticated database such as Postgres. Edit the file in MultiExplorer/multiexplorer/multiexplorer/local_settings.py. Change the value of DATABASES to the following:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'multiexplorer',
        'USER': 'chris',
        'PASSWORD': '',
        'HOST': '',
        'PORT': '5432',
    }
}

You might want to change the username to whatever your user account is.

Now navigate to MultiExplorer/multiexplorer and run the command:

python manage.py migrate

Also, you want to use a webserver such as Apache or Nginx. Install by running the following command:

sudo apt-get install nginx

The move the file MultiExplorer/multiexplorer.nginx to /etc/nginx/sites-enabled/ and change the paths inside that file to point to the MultiExplorer files where you installed them.

Updating

To update the code, move to the MultiExplorer folder and run:

git pull

If you see a message telling you to run ./manage.py migrate, then navigate to the MultiExplorer/multiexplorer folder and run that command.

multiexplorer's People

Contributors

priestc avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.