Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 962 Bytes

File metadata and controls

42 lines (26 loc) · 962 Bytes

Django File Management System

Python Version Django Version

In this Django app, publishers can create quizzes and subscribers can take quizzes according to their interested subjects; publishers can upload files and subscribers can subscribe to files related to their interests.

Running the Project Locally

First, clone the repository to your local machine:

git clone https://github.com/AmberWangjie/Django-File-Manager.git

Run program under virtual environment:

source school/bin/activate

Install the requirements:

pip install -r requirements.txt

Create the database:

python manage.py migrate

Finally, run the development server:

python manage.py runserver

The project will be available at 127.0.0.1:8000.