-
-
Notifications
You must be signed in to change notification settings - Fork 23
⚡ Misc changes and dependency updates #131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9cef3dc
✨ Add: CONTRIBUTING.md for project contribution guidelines and update…
yashksaini-coder d9fb752
✨ Add: Hero banner image to HeroSection and update image dimensions f…
yashksaini-coder 6fe92b4
🗑️ Remove: ContactSection and TestimonialSection components to stream…
yashksaini-coder a3dc756
🔧 Update: Upgrade Next.js and related dependencies to version 15.2.4,…
yashksaini-coder c66088a
Update components/DashboardV2/V2Navbar.tsx
yashksaini-coder c68d978
Update README.md
yashksaini-coder 1925359
Update CONTRIBUTING.md
yashksaini-coder 3066712
Update components/DashboardV2/V2Navbar.tsx
yashksaini-coder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
## <u>How can you Contrbitute to this Project?</u> | ||
|
||
#### 1. Fork the Repository | ||
|
||
To contribute to the project, you need to fork the repository to your GitHub account. You can do this by clicking on the [Fork](https://github.com/yashksaini-coder/leetcode-journal/fork) button at the top right corner of the repository page. | ||
|
||
#### 2. Clone the Repository | ||
|
||
```bash | ||
git clone https://github.com/yashksaini-coder/leetcode-journal | ||
|
||
# Navigate to the project directory | ||
cd leetcode-journal | ||
``` | ||
|
||
#### 3. Install Dependencies | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
#### 4. Set Up Supabase | ||
|
||
- Go to the [Supabase](https://supabase.io/) website and create an account. | ||
- Create a new project in Supabase. | ||
- Navigate to the API section and create a new API key. | ||
- Copy the API key and the URL of your Supabase project. | ||
|
||
#### 5. Set Up Environment Variables | ||
|
||
- Create a new file named `.env` in the root directory of the project. | ||
|
||
- Add the following environment variables to the file: | ||
|
||
```bash | ||
NEXT_PUBLIC_SUPABASE_URL = your-supabase-url | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY = your-anon-key | ||
DATABASE_URL = your-database-url | ||
``` | ||
|
||
#### 6. Start the Application | ||
|
||
```bash | ||
# Start the application | ||
npm run dev | ||
``` | ||
|
||
#### 7. Open the app in your browser | ||
|
||
You should now be able to access the application at [http://localhost:3000](http://localhost:3000) | ||
|
||
## Contributing | ||
|
||
We welcome contributions from the community! To get started, you can follow the steps below: | ||
|
||
#### 7. Create a New Branch | ||
|
||
```bash | ||
# Create a new branch for your feature or fix | ||
git checkout -b feature/your-feature-name | ||
``` | ||
|
||
#### 8. Make sure your changes adhere to the project standards and structure. Stage all changes | ||
|
||
```bash | ||
git add . | ||
``` | ||
|
||
#### 9. Commit your Changes, with a descriptive message | ||
|
||
```bash | ||
git commit -m "Description of the feature or fix" | ||
``` | ||
|
||
#### 10. Push your Changes into the branch to your forked repository | ||
|
||
```bash | ||
# Push your branch to your forked repository | ||
git push origin feature/your-feature-name | ||
``` | ||
|
||
#### 11. Create a Pull Request | ||
|
||
- Go to the original repository on GitHub and open a new Pull Request | ||
- Provide a clear description of your changes in the Pull Request. | ||
|
||
#### 12. Wait for Review | ||
|
||
- Once you have opened a Pull Request, the maintainers will review your changes and provide feedback. | ||
|
||
## ✨ Contributors | ||
|
||
All Thanks to our contributors 💙 | ||
|
||
[](https://github.com/yashksaini-coder/Leetcode-Journal/graphs/contributors) | ||
|
||
<img src="https://www.animatedimages.org/data/media/562/animated-line-image-0184.gif" width="1920" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.