-
Notifications
You must be signed in to change notification settings - Fork 12
Project Scaffolding #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
I think I know which one I'm going with :) |
Prerequisites:
INSTALLgit clone https://github.com/davezuko/react-redux-starter-kit.git app && \
cd app && \
npm install --save-dev redux-devtools redux-devtools-log-monitor redux-devtools-dock-monitor && \
npm install && \
rm -rf .git CHANGELOG.md CONTRIBUTING.md LICENSE && \
git init && \
git add -A && \
git commit -m "Initial commit" && \
echo "-------------------------------------------------------" && \
echo "-- update package.json with your project information --" && \
echo "-------------------------------------------------------" && \
$EDITOR package.json UNIT TESTSnpm run test:dev DEVELOPMENT MODEnpm start PRODUCTION MODEnpm install -g local-web-server && \
npm run deploy:prod && \
cd dist && \
echo "---------------------------------------------------------" && \
echo "-- serving app via a test web server at localhost:8080 --" && \
echo "---------------------------------------------------------" && \
ws -p 8080 |
Hookay, so a few things.
|
Also, it turns out that https://github.com/davezuko/react-redux-starter-kit is a great seeder project. It is just incredibly intimidating at first because one must know Redux. |
reduxjs/redux#291 (comment) ... kind of like a controller and service together here :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Document in ReadMe
The text was updated successfully, but these errors were encountered: