You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+17-45
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,7 @@
1
1
# Leetcode Journal 🚀
2
2
3
-
Your ultimate companion for mastering LeetCode!
4
-
5
3
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.
6
4
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
-
16
5
## Project Overview
17
6
18
7
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
41
30
-**Visualization:** Chart.js for interactive data insights and progress monitoring.
42
31
-**Hosting:** Vercel for a fast, optimized live application experience.
43
32
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
-
57
33
### Setup
58
34
59
35
#### 1. Clone the Repository
@@ -66,36 +42,32 @@ cd leetcode-journal
66
42
67
43
#### 2. Install Dependencies
68
44
```bash
69
-
# Install backend dependencies
70
-
pip install -r requirements.txt
71
-
72
-
# Install frontend dependencies
73
-
cd client
74
45
npm install
75
46
```
76
-
#### 3. Set Up Database
47
+
#### 3. Set Up Supabase
77
48
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.
79
53
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:
81
57
```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
+
```
84
61
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
88
66
```
67
+
89
68
#### 5. Open the app in your browser
90
69
You should now be able to access the application at [http://localhost:3000](http://localhost:3000)
91
70
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
-
99
71
## Contributing
100
72
101
73
We welcome contributions! Follow these steps to get started:
@@ -104,7 +76,7 @@ We welcome contributions! Follow these steps to get started:
104
76
```
105
77
```bash
106
78
# Clone the forked repository to your local machine
0 commit comments