Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fsmaiorano/nodejs-docfy

:computer: A repository for create documentations of projects.
https://github.com/fsmaiorano/nodejs-docfy

bcrypt body-parser connect-flash eslint express express-session hightlight markdown-it method-override mysql2 nodemon nunjucks sequelize

Last synced: 19 days ago
JSON representation

:computer: A repository for create documentations of projects.

Awesome Lists containing this project

README

        

## NodeJs-Docfy

:computer: A repository for create documentations of projects.

# dependencies:

- NodeJS
- MariaDB or MySQL

# database:

- Create a database with name: docfy
- Run: ./node_modules/.bin/sequelize db:migrate
- Edit database config in: config/database.js
```js
module.exports = {
username: 'root',
password: '123',
database: 'docfy',
host: '127.0.0.1',
dialect: 'mysql',
};
```

## run:

```js
npm install
npm start
```