Open source website for movie reviews. This website is being built as our DBMS project in fifth semester, Computer Engineering, Jamia Millia Islamia.
This website uses a number of open source projects to work properly:
And of course this website itself is open source with a public repository on GitHub.
- Open terminal
- sudo pip install pip --upgrade
- pip install virtualenv
- mkdir movieweb
- cd movieweb
- virtualenv .
- source bin/activate
- pip install django==1.9
- Clone/Download this repo
- cd Movies-Website/lmdb
- python manage.py runserver
- Visit 127.0.0.1:8000/
- admin login ID- huzaifa ; Password- codeforces123
Want to contribute? Great!
To fix a bug or enhance an existing module, follow these steps:
- Fork the repo
- Create a new branch (
git checkout -b improve-feature
) - Make the appropriate changes in the files
- Add changes to reflect the changes made
- Commit your changes (
git commit -am 'Improve feature'
) - Push to the branch (
git push origin improve-feature
) - Create a Pull Request
If you find a bug (the website couldn't handle the query and / or gave irrelevant results), kindly open an issue here by including your search query and the expected result.
If you'd like to request a new functionality, feel free to do so by opening an issue here including some sample queries and their corresponding results.
- Write Tests
- Add Code Comments
- Add More Data
- Improve UI
MIT