Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

Latest commit

 

History

History
40 lines (25 loc) · 1.09 KB

README.md

File metadata and controls

40 lines (25 loc) · 1.09 KB

THIS PROJECT HAS BEEN MOVED TO gitlab.com. (Link)

ns3 App Store

ns3 App Store is a is a web application for a module database in ns-3. It is built with Python using the Django Web Framework.

This project has the following basic apps:

  • accounts (handles user accounts - Sign In, Sign Up etc.)
  • profiles (handles user profiles)
  • appstore (handles core details of the web app)
  • help (handles static pages like about, contact us)
  • search (handles free text searching)
  • apps (handles navigation of apps)
  • backend (handles upload and bake integration of apps)

Installation

Quick start

To set up a development environment quickly, first install Python 3. It comes with virtualenv built-in. So create a virtual env by:

1. `$ python3 -m venv appstore`
2. `$ . appstore/bin/activate`

Install all dependencies:

pip install -r requirements.txt

Run migrations:

python manage.py migrate

Detailed instructions

Take a look at the wiki/docs for more information.