# clone the repo
$ git clone
# go into app's directory
$ cd my-project
# checkout stable version
$ git checkout master
# install app's dependencies
$ npm install
Copy all your files to your project folder and then,
# go into app's directory
$ cd my-project
# install app's dependencies
$ npm install
This project was bootstrapped with Create React App
see also: CRA docs
# dev server with hot reload at http://localhost:3000
$ npm start
Navigate to http://localhost:3000. The app will automatically reload if you change any of the source files.
Run build
to build the project. The build artifacts will be stored in the build/
directory.
# build for production with minification
$ npm run build
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
root
├── public/ #static files
│ └── index.html #html template
│
├── src/ #project root
│ ├── assets/ #assets - js icons object
│ ├── containers/ #container source - template layout
| │ ├── _nav.js #sidebar config
| │ └── ...
│ ├── scss/ #user scss/css source
│ ├── views/ #views source
│ ├── App.js
│ ├── App.test.js
│ ├── polyfill.js
│ ├── index.js
│ ├── routes.js #routes config
│ └── store.js #template state example
│
└── package.json