Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 1.54 KB

CONTRIBUTING.md

File metadata and controls

46 lines (40 loc) · 1.54 KB

Contributing

Contributions of all kind are welcomed

Run Locally

Prerequisites :

Clone the Repo

git clone https://github.com/mdgspace/Codinghandles-Api-s.git

Change current folder to project folder

Start redis servers

Create .env file from .env.example

Initialize virtual enviroment

python -m venv venv
source venv/bin/activate

Install packages

pip install --no-cache-dir -r requirements.txt

Run application

python app.py

Commit messages

Please start your commits with these prefixes for better understanding among collaborators, based on the type of commit:

feat: (addition of a new feature)
rfac: (refactoring the code: optimization/ different logic of existing code - output doesn't change, just the way of execution changes)
docs: (documenting the code, be it readme, or extra comments)
bfix: (bug fixing)
chor: (chore - beautifying code, indents, spaces, camelcasing, changing variable names to have an appropriate meaning)
ptch: (patches - small changes in code, mainly UI, for example color of a button, increasing size of tet, etc etc)
conf: (configurational settings - changing directory structure, updating gitignore, add libraries, changing manifest etc)
About