Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 1.38 KB

README.md

File metadata and controls

65 lines (50 loc) · 1.38 KB

koa2-cassandra-boilerplate

MIT node version docker build

A boilerplate application for building web apps using koa2, cassandra and passport, react and redux.

Features

  • Local Authentication using passport
  • Cassandra integration
  • Dockerfile added to deploy the app
  • React and Redux in the client
  • Webpack configuration

Structure

├── app
│   ├── actions
│   ├── components
│   ├── constants
│   ├── containers
│   ├── index.js
│   ├── reducers
│   └── store
├── Dockerfile
├── index.js
├── package.json
├── README.md
├── src
│   ├── config
│   ├── index.js
│   ├── lib
│   ├── middleware
│   ├── models
│   ├── routes
│   ├── tmp
│   └── views
├── test
│   └── test.spec.js
├── webpack.config.js
└── webpack.prod.config.js

Usage

$ npm install 

# Start application
$ npm run dev

# Run test cases
$ npm run test

# Generate test report
$ npm run report

License

MIT