https://github.com/fed/reduxstagram
React + Redux Example
https://github.com/fed/reduxstagram
Last synced: over 1 year ago
JSON representation
React + Redux Example
- Host: GitHub
- URL: https://github.com/fed/reduxstagram
- Owner: fed
- Created: 2016-05-23T14:16:30.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-23T14:19:44.000Z (about 10 years ago)
- Last Synced: 2025-01-18T13:33:26.549Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://learnredux.com/
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reduxstagram
React + Redux example from the [Learn Redux](http://learnredux.com/) course by [Wes Bos](https://github.com/wesbos).

## Building
| Command | Description |
|-----------------|--------------------------------------------------------------------------------------|
| `npm install` | Grab all the necessary dependencies. |
| `npm start` | Start dev server. App will go live on [http://localhost:6789](http://localhost:6789) |
| `npm run build` | Create a `dist` folder and a `bundle.js` file. |
## Release Versions
Follow these steps to have your feature branch merged:
1. `git fetch`
2. `git checkout develop && git reset --hard origin/develop`
3. `npm version [ | major | minor | patch]`
4. `git checkout master && git reset --hard origin/master`
5. `git merge develop`
6. `git push --tags && git push && git checkout develop && git push`
## Semantic Versioning
Given a version number `MAJOR.MINOR.PATCH`, increment the:
1. `MAJOR` version when you make incompatible API changes,
2. `MINOR` version when you add functionality in a backwards-compatible manner, and
3. `PATCH` version when you make backwards-compatible bug fixes.
Additional labels for pre-release and build metadata [are available](https://docs.npmjs.com/cli/version) as extensions to the `MAJOR.MINOR.PATCH` format.
See the [Semantic Versioning](http://semver.org/) specification for more information.