Clone the repo, and install dependencies
git clone [email protected]:theaidem/stapp.git ./project_name
cd project_name && npm i
Start dev server
npm start
Open app in localhost
Change your code, hot reload is enabled, enjoy that)
You can generate basic code for your CRUD flow. Avalible to generate redux actions and reducer, also yo can create react containers connected to redux store.
npm run gen
Follow instructions, and see generated files. If you generated reducers, make sure you must import and combine that into source/scripts/reducers/index.js
manually.
npm run build
Check ./dist
folder, it's your production ready static files.
Profit!