/MRRS

Medical Registration Recommendaion System

Primary LanguagePython

MRRS

A Medical Registration Recommendaion System

Description

Now I only implement the front-end. If you type something in the search box, the web will return a table with results. A naive project @_@

Installation

1. Django

sudo pip install django

2. PostgreSQL

2.1 Install PostgreSQL

2.2 Create table

su -i -u postgres
create MRRS_DB

2.3 Python's interface library with PostgreSQL

sudo pacman -S python-psycopg2

3. Other python library

cd MRRS/front-end
sudo pip install pip.txt

Run

cd MRRS/front-end
python manage.py migrate    # create new table
python manage.py runserver

Visit the website

Open http://127.0.0.1:8000/search_engine in a browser.