Built with the tools and technologies:
a github profile roaster enhanced with the help of gemini model 3B.
└── RoastHub/
├── .github
│ └── workflows
├── README.md
├── app
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ └── page.tsx
├── components
│ └── Dialog.tsx
├── eslint.config.mjs
├── next.config.ts
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── public
│ ├── file.svg
│ ├── globe.svg
│ ├── next.svg
│ ├── vercel.svg
│ └── window.svg
└── tsconfig.jsonROASTHUB/
__root__
package-lock.json ❯ REPLACE-MEnext.config.ts ❯ REPLACE-MEtsconfig.json ❯ REPLACE-MEeslint.config.mjs ❯ REPLACE-MEpostcss.config.mjs ❯ REPLACE-MEpackage.json ❯ REPLACE-ME
.github
workflows
nextjs.yml ❯ REPLACE-ME
components
Dialog.tsx ❯ REPLACE-ME
app
layout.tsx ❯ REPLACE-MEglobals.css ❯ REPLACE-MEpage.tsx ❯ REPLACE-ME
Before getting started with RoastHub, ensure your runtime environment meets the following requirements:
- Programming Language: Error detecting primary_language: {'json': 3, 'ts': 1, 'mjs': 2, 'yml': 1, 'tsx': 3, 'css': 1}
- Package Manager: Npm
Install RoastHub using one of the following methods:
Build from source:
- Clone the RoastHub repository:
❯ git clone https://github.com/JaswanthRemiel/RoastHub- Navigate to the project directory:
❯ cd RoastHub- Install the project dependencies:
Using npm
❯ npm install- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
RoastHubproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/JaswanthRemiel/RoastHub
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!