AL
alisonjonck/todo-app
Todo app built with Webpack4, React, Redux and Jest
Todo app
Live Demo: https://quirky-northcutt-652f57.netlify.com/
Application Requirements
- Node.js (recommended: 4.x)
- npm (recommended: 2.x or 3.x)
Run it on Docker using nginx
- Build a image called react-nginx for example:
$ docker build -t react-nginx . - Then run a new container using it:
$ docker run --rm -it -p 8080:80 react-nginx
Install
$ git clone https://github.com/alisonjonck/todo-app
$ cd todo-app
$ npm install
Run tests
$ npm test
Start & watch
$ npm start
Simple build for production
$ npm run build
Config tests
Enable or disable TEST for #filter setting. Change ENABLE_FILTER_TEST to true or false at webpack.config.js.
{
plugins: [
...,
new webpack.DefinePlugin({
'ENABLE_FILTER_TEST': JSON.stringify(true)
})
]
}On this page
Languages
JavaScript89.5%Dockerfile4.7%CSS4.4%HTML1.5%
Contributors
MIT License
Created July 29, 2018
Updated April 27, 2022