Web based digital Kanban tool
- node v6
- npm
- mysql
mysql -uroot -p -e "create database tacowasa_development"
git clone https://github.com/Kait-tt/tacowasa
cd tacowasa
cp config/default.json config/development.json
# edit config/development.json
npm install
npm run migrate
npm run build
npm run start
mysql -uroot -p -e "create database tacowasa"
git clone https://github.com/Kait-tt/tacowasa
cd tacowasa
cp config/default.json config/production.json
# edit config/production.json
npm install --production
$(npm bin)/cross-env NODE_ENV=production npm run migrate
$(npm bin)/cross-env NODE_ENV=production npm run build
npm run start
require: install.development
mysql -u root -p -e "create database tacowasa_test"
cp config/default.json config/test.json
# edit config/test.json
npm run migrate:test
npm run test:cover
see package.json
npm run start
: run web servernpm run build
: build public files with webpacknpm run watch
: watch to build public filesnpm run lint:all
: run eslint for all js filesnpm run migrate
: migration databasenpm run migrate:test
: migration test databasenpm run test:all
: test all spec filesnpm run test:cover
: test all spec files and calc coverage