Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.71 KB

README.md

File metadata and controls

38 lines (33 loc) · 1.71 KB

CRUD Template – Frontend

This repository is the default frontend starter for new DALI React projects. Installation and setup instructions are included below. You should eventually customize this README file with project-specific documentation.

Tech Stack

Directory Structure

The included directory structure is a template only – feel free to adapt accordingly for your project.

.
├── ...         
├── src                    
│   └── components         # reusable components across several screens
│   └── containers         # individual pages
│   └── hocs               # contains React higher-order components
│   └── store              # Redux store and setup
|     └── actionCreators   # actions
|     └── reducers         # reducers
|     └── requests         # backend server API calls
│   └── utils              # utility folder containing helper files
├── .eslintrc.json         # eslint setup
├── webpack.config.js      # webpack setup
├── package.json           # npm config
└── ...

Setup

  1. Install Homebrew if you don't already have Homebrew installed.
  2. brew install node if you don't already have node.
  3. brew install watchman if you don't already have watchman.
  4. yarn install to install the dependencies.
  5. yarn dev to start the development environment.