Skip to content

Commit ae998e0

Browse files
docs: Revise README to streamline setup instructions and enhance clarity
1 parent 17c8fdf commit ae998e0

File tree

1 file changed

+17
-45
lines changed

1 file changed

+17
-45
lines changed

README.md

+17-45
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
11
# Leetcode Journal 🚀
22

3-
Your ultimate companion for mastering LeetCode!
4-
53
Leetcode Journal is a robust platform designed to help developers track, organize, and analyze their problem-solving journey on LeetCode. Whether you're preparing for coding interviews or sharpening your skills, Leetcode Journal ensures an intuitive and efficient experience.
64

7-
## Table of Contents
8-
9-
- [Project Overview](#project-overview)
10-
- [Key Features](#key-features)
11-
- [Tech Stack](#tech-stack)
12-
- [Installation](#installation)
13-
- [Usage](#usage)
14-
- [Contributing](#contributing)
15-
165
## Project Overview
176

187
Leetcode Journal is built to address the need for systematic tracking and review of LeetCode solutions. This platform is perfect for developers who want to:
@@ -41,19 +30,6 @@ Leetcode Journal leverages cutting-edge technologies to deliver a seamless user
4130
- **Visualization:** Chart.js for interactive data insights and progress monitoring.
4231
- **Hosting:** Vercel for a fast, optimized live application experience.
4332

44-
## Installation
45-
46-
### Prerequisites
47-
48-
Ensure you have the following tools installed:
49-
50-
- [Node.js](https://nodejs.org/) (v16.x or higher)
51-
- [npm](https://www.npmjs.com/) (v6.x or higher) or yarn (v1.x or higher)
52-
- [Python](https://www.python.org/) (v3.x or higher)
53-
- [PostgreSQL](https://www.postgresql.org/) (v14.x or higher)
54-
Python 3.x
55-
PostgreSQL
56-
5733
### Setup
5834

5935
#### 1. Clone the Repository
@@ -66,36 +42,32 @@ cd leetcode-journal
6642

6743
#### 2. Install Dependencies
6844
```bash
69-
# Install backend dependencies
70-
pip install -r requirements.txt
71-
72-
# Install frontend dependencies
73-
cd client
7445
npm install
7546
```
76-
#### 3. Set Up Database
47+
#### 3. Set Up Supabase
7748

78-
- Configure your PostgreSQL database in the backend settings.
49+
- Go to the [Supabase](https://supabase.io/) website and create an account.
50+
- Create a new project in Supabase.
51+
- Navigate to the API section and create a new API key.
52+
- Copy the API key and the URL of your Supabase project.
7953

80-
#### 4. Start the Application
54+
#### 4. Set Up Environment Variables
55+
- Create a new file named `.env` in the `client` directory.
56+
- Add the following environment variables to the file:
8157
```bash
82-
# Start the backend
83-
python manage.py runserver
58+
NEXT_PUBLIC_SUPABASE_URL = your-supabase-url
59+
NEXT_PUBLIC_SUPABASE_ANON_KEY = your-anon-key
60+
```
8461

85-
# Start the frontend
86-
cd client
87-
npm start
62+
#### 4. Start the Application
63+
```bash
64+
# Start the application
65+
npm run dev
8866
```
67+
8968
#### 5. Open the app in your browser
9069
You should now be able to access the application at [http://localhost:3000](http://localhost:3000)
9170

92-
## Usage
93-
94-
- **Login/Sign Up:** Access your personalized dashboard.
95-
- **Save Solutions:** Add your solutions and tag them by category.
96-
- **Analyze Performance:** Explore your progress using charts and statistics.
97-
- **Categorize Problems:** Organize and retrieve problems effortlessly.
98-
9971
## Contributing
10072

10173
We welcome contributions! Follow these steps to get started:
@@ -104,7 +76,7 @@ We welcome contributions! Follow these steps to get started:
10476
```
10577
```bash
10678
# Clone the forked repository to your local machine
107-
git clone https://github.com/your-username/leetcode-journal.git
79+
git clone https://github.com/yashksaini-coder/leetcode-journal.git
10880
```
10981
```bash
11082
# Navigate into the project directory

0 commit comments

Comments
 (0)