Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithsegnet/practice-code-of-conduct
mock a code of conduct for a project
https://github.com/codewithsegnet/practice-code-of-conduct
Last synced: 3 days ago
JSON representation
mock a code of conduct for a project
- Host: GitHub
- URL: https://github.com/codewithsegnet/practice-code-of-conduct
- Owner: CodewithSegNet
- Created: 2024-07-22T20:51:08.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T13:28:58.000Z (4 months ago)
- Last Synced: 2024-07-24T00:56:02.263Z (4 months ago)
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Code of Conduct
## Introduction
Welcome to our FastAPI project! Our community values respectful and constructive collaboration. This Code of Conduct establishes clear guidelines for acceptable behavior and outlines the conventions and methods to be used in this project. By participating, you agree to abide by this Code of Conduct.
We encourage participants to read the `Contributor.md` in branch `Setup-workflow.md` in this repo before pushing code and pulling code.
## Conventions
***Code Style***
***Language***: The project uses Python.
***Indentation***: Use 4 spaces for indentation.
***Line Length***: Limit lines to 79 characters.
## Naming Conventions
- **Variables and Functions**: Use snake_case (e.g., my_function).
- **Classes**: Use PascalCase (e.g., MyClass).
- **Constants**: Use UPPER_CASE (e.g., MY_CONSTANT).
- **Comments**: Use # for single-line comments and ''' or """ for docstrings.
## Git Commit Messages
- Format: Follow the conventional commits standard.
## Branching and Pull Requests
***Branch Naming***:
- **Feature Branches**: feature/branch-name
- **Bug Fix Branches**: bugfix/branch-name
- **Hotfix Branches**: hotfix/branch-name
- **Pull Request Titles**: Use the format [Type]: Brief description (e.g., [Bugfix]: Fix user login issue, [Feat]: add user login).
## PR MESSAGE FORMAT
**Title**: Fix token validation issue in login endpoint
**Description**:
- **Purpose**:
- Example: This PR resolves an issue where users were unable to log in due to incorrect token validation.- **Changes**:
- Example: Refactored token validation logic in the login endpoint.- **Impact**:
- Example: Ensures users can log in successfully with valid credentials. No impact on other endpoints.- **Testing**:
- Example: Added unit tests for token validation; all tests pass.- **Additional Information**:
- Example: Related to issue #123.**Endpoint Naming**:
- Use descriptive and concise names.
- Use nouns to represent the resources being acted upon. Example: /users/orders/{order_id}
### HTTP Methods:
Use HTTP methods according to their purpose:
- GET for retrieving resources.
- POST for creating resources.
- PUT for updating resources.
- DELETE for deleting resources.### Status Codes:
- Use appropriate HTTP status codes to represent the outcome of the operations.
- **Example**: 200 OK for successful operations, 201 Created for successful resource creation, 404 Not Found for missing resources.
**Path Parameters**:
- Use curly braces {} to define path parameters.
Example: /users/{user_id}
## Testing
- **Test Framework**: Use pytest for testing.
- **Pytest**: Write Pytest for all new features and bug fixes.
- **Test Coverage**: Ensure at least 90% test coverage.
### Documentation
- **Docstrings**: Use docstrings for all public functions and classes.
- **Update Frequency**: Update documentation with each significant change.
## Code Reviews
- **Review Process**: All code changes must be reviewed and approved by at least one other contributor.
- **Review Criteria**: Ensure changes follow the project's coding conventions, are well-documented, and include appropriate tests.
## Conduct
- Be Respectful
- Treat all members of the community with respect and consideration.
- Refrain from demeaning, discriminatory, or harassing behavior and speech.
- Be Collaborative.
- Seek constructive feedback and be open to suggestions.
## Reach out to Team Member
Instances of you having questions reach out to the project maintainers on slack [@Sunday Mba, @joboy-dev, @TMCoded, @Modupe Akanni, @Olusegun Emmanuel]. All complaints will be reviewed promptly.
## Acknowledgment
By participating in this project, you agree to abide by this Code of Conduct and help foster a positive and productive community.