Faculty Publication Management is a project done as a mini project for Software Engineering, a course offered by the Institute of Engineering, Tribhuvan University. It helped us apply the concepts of various web technologies and realise the potential of web technologies in a real world project.
-
Organizing the research papers, books, articles of Professors/students of certain educational institutions
-
Exporting available paper in MLA, APA, UGC/TU, IEEE format
-
Exporting in PDF or spreadsheet
-
Searching and sorting the publications
- Clone this repository:
git clone [email protected]:parikshitadhikari/proj_fpms.git
-
Install Docker.
-
Open terminal and run the following command:
docker pull python:3.9
-
Now, in the root directory, run the command:
docker build -t image-name
anddocker run -p 8000:8000 image-name
. If any permission issues are encountered, run the command usingsudo
. -
If successful, you can view the project at: http://localhost:8000/ or http://127.0.0.1:8000/
Note: You need to have docker app running in the background!
You need to have Python installed! Suitable python version is 3.9.
- In the root directory run the following commands:
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
And finally run the command:
python managa.py runserver