git clone git@github:uselessdev/expressive.git <your-app>
cd <your-app>
yarn # npm install
cp .env.example .env # You need te confire your database connection here
Expressive no longer has database configurations, authentication and page rendering, is now a simple boilerplate that proposes a simpler structure to handle an API application.
├── app
│ ├── Authors
│ │ ├── controller.js
│ │ ├── index.js
│ │ ├── repository.js
│ │ └── routes.js
│ ├── Books
│ │ ├── controller.js
│ │ ├── index.js
│ │ ├── repository.js
│ │ ├── request.js
│ │ └── routes.js
│ ├── Home
│ │ ├── controller.js
│ │ ├── index.js
│ │ └── routes.js
│ └── Routes.js
├── bootstrap
│ └── app.js
├── config
│ └── app.js
├── LICENSE
├── package.json
├── README.md
├── server.js
├── tests
│ ├── books.test.js
│ └── index.test.js
└── yarn.lock