git clone https://github.com/reduhq/KivoraAPI.git
cd KivoraAPInpm installCreate a .env file in the root of the project and configure the required environment variables. You can use the .env.example file as a guide:
cp .env.example .envnpx prisma migrate devnpm run dev-
When it's a feature:
feature/<feature-name>- Examples:
feature/crud-productfeature/crud-client
-
When it's a bug:
fix/<bug-name>- Examples:
fix/login-issuefix/data-validation
-
When it's an emergency bug (only towards the
mainbranch):hotfix/<emergency-name>- Examples:
hotfix/api-crashhotfix/security-vulnerability
-
When it's a feature:
feat: <feature-description>- Example:
feat: allow provided config object to extend other configs
-
When it's a bug:
fix: <bug-description>- Example:
fix: prevent racing of requests