First off, thanks for taking the time to contribute! 🎉
The following is a set of guidelines for contributing to the College Ecosystem project. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
This section guides you through submitting a bug report for College Ecosystem. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior, and find related reports.
Before creating a bug report, please check if an issue already exists.
- Ensure the bug was not already reported by searching on GitHub under Issues.
- If you're unable to find an open issue addressing the problem, open a new one.
This section guides you through submitting an enhancement suggestion for College Ecosystem, including completely new features and minor improvements to existing functionality.
Before creating an enhancement suggestion, please check if an issue already exists.
- Ensure the enhancement was not already suggested by searching on GitHub under Issues.
- If you're unable to find an open issue addressing the suggestion, open a new one.
Designers can contribute to the frontend applications by creating and improving the visual elements of the project. Here are some ways designers can help:
- Create Icons: Design custom icons that align with the project's theme and improve the user interface.
- Design Layouts: Propose new layouts or improve existing ones to enhance user experience and accessibility.
- Style Guides: Develop and maintain a style guide to ensure consistency across the application.
- Review UI/UX: Provide feedback on the user interface and user experience, suggesting improvements where necessary.
- Collaborate with Developers: Work closely with developers to implement designs and ensure they are feasible and functional.
To contribute, designers can:
- Fork the repository and create a branch for their design changes.
- Add or update design files in the appropriate directory.
- Submit a pull request with a description of the changes and any relevant design files or mockups.
- AI Chatbot: Create a chatbot with open source LLM or free LLM api (that don't use ou data to train) to help question-answer about platform and anything abou the college.
- Create Icons:Create or design a set of Svg icons for the platform with consistent stroke and style
The process described here has several goals:
- Maintain the quality of the codebase
- Fix bugs or introduce new features
- Discuss code changes
Please follow these steps:
- Fork the repository and create your branch from
main
. - If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- Ensure the test suite passes.
- Make sure your code lints.
- Issue that pull request!
To get started with the College Ecosystem on your local machine, follow these steps:
git clone https://github.com/kanakkholwal/college-ecosystem.git
cd college-ecosystem
yarn install
# or
npm install
This command installs dependencies for all projects defined in the apps directory.
npm install --workspace=platform
npm install some-package --workspace=platform
To run individual projects locally:
yarn workspace [app-name] run dev
# or
npm run --workspace=[app-name] dev
# or
turbo dev --filter=[app-name]
# e.g.
turbo dev --filter=platform
To build individual projects for production:
yarn workspace [app-name] run build
# or
npm run --workspace=[app-name] build
# or
turbo build --filter=[app-name]
# e.g.
turbo build --filter=platform
To utilize Turbo Repo for optimized workflows:
yarn turbo run [command]
# or
npx turbo run [command]
# or
turbo [command]
Replace [command] with build
, dev
, lint
, or test
as needed.
The root package.json
file defines scripts for common tasks:
{
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md}\""
}
}