Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codebynao/wedev-app-server
https://github.com/codebynao/wedev-app-server
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/codebynao/wedev-app-server
- Owner: codebynao
- Created: 2019-09-17T08:11:32.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2022-12-22T17:09:18.000Z (about 2 years ago)
- Last Synced: 2023-03-08T15:25:55.584Z (almost 2 years ago)
- Language: JavaScript
- Homepage: https://wedev-app-server.now.sh
- Size: 200 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webdev app server
## Git conventions
> It is not recommended to push modifications on master or develop branch. In addition these branches are protected and it's impossible to send modifications.
It will be necessary to follow these conventions.
## Naming of branches
Each branch name must be preceded by one of these prefixes depending on the context.
- build: Changes that affect the build system or external dependencies (:rocket: `:rocket:`)
- ci: Changes on our CI configuration files and scripts (:zap: `:zap:`)
- docs: Changes on documentation only (:pencil: `:pencil:`)
- feat: A new feature (:sparkles: `:sparkles:`)
- fix: A bug fix (:bug: `:bug:`)
- perf: A code change that improves performance (:zap: `:zap:`)
- refactor: A code change that neither fixes a bug nor adds a feature (:recycle: `:recycle:`)
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) (:art: `:art:`)
- test: Adding missing tests or correcting existing tests (:alembic: `:alembic:`)```bash
/
```feat/init-my-project
## Commit messages
```bash
():
```:sparkles: add login form
## Type
Same as we have seen in **Naming of branches**
## Context
The context remains optional and expresses the scope of the change
## Subject
Rules:
- use the imperative: add, update, remove, prevent ... put everything in lowercase
- do not end the message with a point avoid text interpreted in shell
- in English por favor :grin: :pray:## Git Process
Once the development is finished, just open a pull/merge request to the develop branch in order to validate the code and merge it with the existing one.