https://github.com/patomation/react-boilerplate
A SIMPLE-er-er react webpack boilerplate
https://github.com/patomation/react-boilerplate
conventional-commits docker husky react typescript webpack
Last synced: about 1 year ago
JSON representation
A SIMPLE-er-er react webpack boilerplate
- Host: GitHub
- URL: https://github.com/patomation/react-boilerplate
- Owner: patomation
- Created: 2019-04-28T04:49:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-12T02:40:39.000Z (over 1 year ago)
- Last Synced: 2025-03-27T02:12:01.771Z (over 1 year ago)
- Topics: conventional-commits, docker, husky, react, typescript, webpack
- Language: JavaScript
- Homepage:
- Size: 12.2 MB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# React Boilerplate
keep it simple stupid
## USAGE:
Install the deps the first time
```sh
npm i
```
Run the Dev Server
```sh
npm start
```
## Build:
```sh
npm run build
```
## Testing
```sh
npm test
```
## Docker
```sh
docker build -t react-boilerplate-image .
docker run -dit --rm --name react-boilerplate-app -p 8080:80 react-boilerplate-image
```