Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.1 KB

README.md

File metadata and controls

46 lines (29 loc) · 1.1 KB

A pomodoro app (not finished)

Project structure

assets/ ___________________________________ # Images/Fonts etc.
build/  ___________________________________ # Production dir
src/
|- index.jsx _______________________________ # Application entry 
|- App.jsx _________________________________ # Application
|  |- components/ __________________________ # React components
|  |- scss/ ________________________________ # Styles

tests/ _____________________________________ # Tests directory

webpack
|- paths.js ________________________________ # webpack paths
|- webpack.common.js _______________________ # common webpack config
|- webpack.dev.js __________________________ # development config
|- webpack.prod.js _________________________ # production config      

Installation

1- Clone the app repo

git clone https://github.com/madeinspace/pomodoro

2- yarn or npm install to install npm packages

3- start dev server using yarn start or npm start.

3- build and bundling resources for production yarn build.

Tech stack

1- React

2- Webpack 4

3- SCSS / CSS modules

4- ES6

5- Jest/Enzyme