
A web application consisting of user and admin interfaces, adding authors and articles to the neo4j database from the admin interface, viewing the neo4j database as a table or graph and searching by author or article from both panels
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
A web application consisting of user and admin interfaces, adding authors and articles to the neo4j database from the admin interface, viewing the neo4j database as a table or graph and searching by author or article from both panels. Simply put, it's a DBLP clone.
Make sure to you have Visual Studio Code
Download and install XAMPP Control Panel for MySQL connection
- Get a free API Key at https://neo4j.com
- Clone the repo
git clone https://github.com/bugramurat/dblp-clone.git
- Install NPM packages
npm install
- For neo4j connection enter your url, username and password in
index.js
60 const uri = "ENTER YOUR URL"; 61 const user = "ENTER YOUR USERNAME"; 62 const password = "ENTER YOUR PASSWORD";
- For mysql connection enter your port, username, password, database name
and your table name in
12 port: 3307, 13 user: "root", 14 password: "", 15 database: "blobfile",
users.js
andindex.js
(line numbers will be different in index.js)41 "SELECT password, id from users where email = ?",
- Open XAMPP and enable Apache and MySQL
To run it, type the following into the terminal
nodemon
The website will be opened at http://localhost:3000
For admin interface use http://localhost:3000/admin/login
For user interface use http://localhost:3000/users/login
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.md
for more information.
Bugra Murat - bugramurat.q@gmail.com
Project Link: https://github.com/bugramurat/dblp-clone