-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Diego Robles
committed
Apr 4, 2019
1 parent
c2728ea
commit a4135b4
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# The Meteor Course | ||
|
||
### DESCRIPTION | ||
|
||
Learn how **I** build [SPAs](https://en.wikipedia.org/wiki/Single-page_application) from `--bare` [Meteor](https://www.meteor.com) app to production. [Apollo](https://www.apollographql.com) and [React](https://www.reactjs.org) included! | ||
|
||
### CONTENT | ||
|
||
- Users -> signup, login, logout. | ||
- Routing with React Router | ||
- Front End library [Material-UI](https://www.material-ui.com) | ||
- Querys and Mutations (GraphQL) | ||
- RESTDataSource (GraphQL) | ||
- Deploying | ||
|
||
### GIT GUIDELINES | ||
|
||
#### Branching Model | ||
|
||
- [GITFLOW](https://datasift.github.io/gitflow/IntroducingGitFlow.html) | ||
|
||
#### Commit Messages | ||
|
||
- Always in english | ||
- **One line**, 100 chars max. | ||
- Format: `type(context):description` | ||
|
||
<p align="center"><span style="font-weight: 800">Example:</span></br>feat(accounts):add sign in</p> | ||
|
||
##### Type | ||
|
||
- **feat**: new feature | ||
- **fix**: bugfixes | ||
- **docs**: changes on documentation | ||
- **style**: identation, styling | ||
- **refactor**: code refactor | ||
- **perf** performance improvements | ||
- **test**: changes on test | ||
- **chore**: build and tools | ||
|
||
##### Context | ||
|
||
Word that makes reference to place where commit makes changes | ||
|
||
##### Description | ||
|
||
- imperative verb (ex. “change“) | ||
- no mayus at the begining | ||
- no dot at the end |