Skip to content

Commit

Permalink
Fixed a few publish issues. Added readme.md file etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Moffat committed Aug 9, 2015
1 parent 5fe06c2 commit 2b6987c
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
/node_modules/*
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# openKB

openKB is a Knowledge base application build with Nodejs and ExpressJS. The application uses a flat file database called [nedb](https://github.com/louischatriot/nedb) for easy installation.

Demo: [http://openkb.mrvautin.com](http://openkb.mrvautin.com)

### Installation

```sh
$ npm install openkb
```

### Users

Needs work. You can manually edit the _/Data/users.db_ file and change the email address.

Currently the default user is:

**Username:** [email protected]

**Password:** test
Empty file removed data/settings.db
Empty file.
4 changes: 1 addition & 3 deletions data/users.db
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
{"user_email":"[email protected]","user_password":"$2a$10$FFLTtwyjand0EjeE/YLqD.Fe0SkhhLg2ggb.w7cvZtr2gwLF3DAZi","is_admin":"false","_id":"LSwCvm3iokNuk1s4"}
{"user_email":"[email protected]","user_password":"test","is_admin":"false","_id":"avDzer14pnRfixIe"}
{"user_email":"[email protected]","user_password":"$2a$08$fI.sxAINEuohZ33LTQ12h.Am117.lFIEr6sp2kYh.zTRpQ3pmVRrm","is_admin":"true","_id":"uLy2lBiGNIFKD1vQ"}
{"user_email":"[email protected]","user_password":"$2a$08$fI.sxAINEuohZ33LTQ12h.Am117.lFIEr6sp2kYh.zTRpQ3pmVRrm","is_admin":"true","_id":"LSwCvm3iokNuk1s4"}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openKB",
"version": "0.0.1",
"private": true,
"name": "openkb",
"version": "0.0.3",
"private": false,
"scripts": {
"start": "node app.js"
},
Expand Down

0 comments on commit 2b6987c

Please sign in to comment.