This documentation contains a set of guidelines to help you during the contribution process.
We are happy to welcome all the contributions from anyone willing to improve/add new projects (doesn't matter which language) to this Repository.
Please read and follow our Code of Conduct.
If you're new to Git and GitHub, no worries! Here are some useful resources:
- Forking a Repository
- Cloning a Repository
- How to Create a Pull Request
- Getting Started with Git and GitHub
- Learn GitHub from Scratch
FLASH-FATHOM-AI/
├── .github/ # GitHub-related configurations such as workflows, issue templates, etc
│
├── public/ # Contains some images for the public purpose
│
├── src/ # Contains all the source components of the project
│
├── .env.example
│
├── .eslintrc.json
│
├── .gitignore
│
├── CODE_OF_CONDUCT.md # Some rules for the contributors
│
├── CONTRIBUTING.md # Instructions about how to contribute
│
├── Dockerfile
│
├── LICENSE # Basically a permission to do something
│
├── README.md # Some basic instructions to follow
├──
├── components.json
├──
├── docker-compose.yml
├──
├── next.config.mjs
├──
├── package.json
├──
├── pnpm-lock.yaml
├──
├── postcss.config.mjs
├──
├── tailwind.config.ts
├──
├── tsconfig.json
Before contributing to the repository, here are a few steps you can follow to understand the project
For Installation on local machine follow bellow steps: First fork the reqpository
git clone https://github.com/your-username/Flash-Fathom-AI/
cd Flash-Fathom-AI
The package manager
npm install -g pnpm
Install pnpm pakcage manager
pnpm install
If required for you:
Installing clerk
pnpm add @clerk/clerk-sdk @clerk/nextjs
OpenAI
pnpm add openai
Stripe
pnpm add @stripe/stripe-js
Shadcn UI
pnpm add @shadcn/ui
First Install Docker Desktop
Pull the image
docker pull surajkumar00/flashfathom-ai
Run the Container
docker run -it -p 3000:3000 surajkumar00/flashfathom-ai
Check localhost
localhost:3000
We welcome contributions to enhance the AI Customer Support system! To contribute:
Note: To assign the issue to yourself type .take
in the commant on the issue.
-
Star this repository Click on the top right corner marked as Stars at last.
-
Fork this repository Click on the top right corner marked as Fork at second last.
-
Clone the forked repository
git clone https://github.com/<your-github-username>/Flash-Fathom-AI.git
- Navigate to the project directory
cd Flash-Fathom-AI
- Create a new branch
git checkout -b <your_branch_name>
- To make changes
git add .
- Now to commit
git commit -m "add comment according to your changes or addition of features inside this"
- Push your local commits to the remote repository
git push -u origin <your_branch_name>
-
Create a Pull Request
-
Congratulations! 🎉 you've made your contribution
- Admin :- Suraj
- Contact :- Email
Open-Source Blog :- Opensource
Git And Github :- Git and Github
-
Follow the Project's Code Style
- Maintain consistency with the existing code style (indentation, spacing, comments).
- Use meaningful and descriptive names for variables, functions, and classes.
- Keep functions short and focused on a single task.
- Avoid hardcoding values; instead, use constants or configuration files when possible.
-
Write Clear and Concise Comments
- Use comments to explain why you did something, not just what you did.
- Avoid unnecessary comments that state the obvious.
- Document complex logic and functions with brief explanations to help others understand your thought -process.
-
Keep Code DRY (Don't Repeat Yourself)
- Avoid duplicating code. Reuse functions, methods, and components whenever possible.
- If you find yourself copying and pasting code, consider creating a new function or component.
-
Write Tests
- Write unit tests for your functions and components.
- Ensure your tests cover both expected outcomes and edge cases.
- Run tests locally before making a pull request to make sure your changes don’t introduce new bugs.
-
Code Reviews and Feedback
- Be open to receiving constructive feedback from other contributors.
- Conduct code reviews for others and provide meaningful suggestions to improve the code.
- Always refactor your code based on feedback to meet the project's standards.
When submitting a pull request, please adhere to the following:
- Self-review your code before submission. 😀
- Include a detailed description of the functionality you’ve added or modified.
- Comment your code, especially in complex sections, to aid understanding.
- Add relevant screenshots to assist in the review process.
- Submit your PR using the provided template and hang tight; we'll review it as soon as possible! 🚀
To report an issue, follow these steps:
- Navigate to the project's issues section :- Issues
- Provide a clear and concise description of the issue.
- Wait until someone looks into your report.
- Begin working on the issue only after you have been assigned to it. 🚀
We truly appreciate your time and effort to help improve our project. Feel free to reach out if you have any questions or need guidance. Happy coding! 🚀