Skip to content

Commit

Permalink
refactor(base):update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Robles committed Apr 4, 2019
1 parent c2728ea commit a4135b4
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions README.md
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

0 comments on commit a4135b4

Please sign in to comment.