DocKip is a role-based document management system built with Express, Node, and MongoDB. The application allows you to manage users, roles and documents with assigned authorization. Basically, it helps you to create, share and manage documents with ease.
- Download and install Node JS if not already installed.
- Download and install Mongodb if not already installed.
- Clone the repository here or go to the project github page here and download the zip file of the project. Unzip it.
- Navigate to your terminal and change your directory to the Document-Management-System.
- Run
npm install
to install node dependencies. - Run
bower install
to install frontend dependencies. - Place a
.env
file on the project's root directory and add your database configuration.
EXAMPLE
DATABASE_URL=mongodb://localhost:27017/testdb.
8. Run npm run initDb
to initialize your database with a SuperAdmin user.
Pivotal Tracker was used as the management too; throughout the process of building this application. Checkout Pivotal Tracker Board
The application allows for the SuperAdmin to manage the entire process and assign authorization for different roles.
- Run
npm install gulp -g
. - Run
gulp
on your terminal. - Navigate to
http://localhost:5555
on your browser.
Run gulp test
on your terminal. Remember to run test on the project root directory.
- Create an issue. First look through the open issues.
- Clone the repository or fork it.
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin your-new-feature
- Submit a pull request.