Skip to content

Commit a760077

Browse files
committed
fix: normalize line endings
1 parent 4abd0b9 commit a760077

File tree

13 files changed

+474
-688
lines changed

13 files changed

+474
-688
lines changed

‎CODE_OF_CONDUCT.md‎

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
1717
Examples of behavior that contributes to a positive environment for our
1818
community include:
1919

20-
* Demonstrating empathy and kindness toward other people
21-
* Being respectful of differing opinions, viewpoints, and experiences
22-
* Giving and gracefully accepting constructive feedback
23-
* Accepting responsibility and apologizing to those affected by our mistakes,
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
2424
and learning from the experience
25-
* Focusing on what is best not just for us as individuals, but for the
25+
- Focusing on what is best not just for us as individuals, but for the
2626
overall community
2727

2828
Examples of unacceptable behavior include:
2929

30-
* The use of sexualized language or imagery, and sexual attention or
30+
- The use of sexualized language or imagery, and sexual attention or
3131
advances of any kind
32-
* Trolling, insulting or derogatory comments, and personal or political attacks
33-
* Public or private harassment
34-
* Publishing others' private information, such as a physical or email
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
3535
address, without their explicit permission
36-
* Other conduct which could reasonably be considered inappropriate in a
36+
- Other conduct which could reasonably be considered inappropriate in a
3737
professional setting
3838

3939
## Enforcement Responsibilities
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
106106
### 4. Permanent Ban
107107

108108
**Community Impact**: Demonstrating a pattern of violation of community
109-
standards, including sustained inappropriate behavior, harassment of an
109+
standards, including sustained inappropriate behavior, harassment of an
110110
individual, or aggression toward or disparagement of classes of individuals.
111111

112112
**Consequence**: A permanent ban from any sort of public interaction within

‎CONTRIBUTING.md‎

Lines changed: 46 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,49 @@ Thanks for showing interest in contributing to **Inquizzitive**! 💡 We welcome
55
## 📌 How to Contribute
66

77
### 1. Check Issues
8-
* Look at the **Issues** tab of this repository.
9-
* Pick any issue labeled `hacktoberfest`, `good first issue`, or `enhancement`.
10-
* You can also propose your own improvements by creating a new issue.
8+
9+
- Look at the **Issues** tab of this repository.
10+
- Pick any issue labeled `hacktoberfest`, `good first issue`, or `enhancement`.
11+
- You can also propose your own improvements by creating a new issue.
1112

1213
### 2. Fork the Repository
13-
* Click the **Fork** button at the top right of this repo.
14-
* Clone your fork locally:
14+
15+
- Click the **Fork** button at the top right of this repo.
16+
- Clone your fork locally:
1517

1618
```bash
1719
git clone git@github-sbdecoder:sb-decoder/inquizzitive.git
1820
cd inquizzitive
1921
```
2022

2123
### 3. Create a New Branch
22-
* Always create a separate branch for your work:
24+
25+
- Always create a separate branch for your work:
2326

2427
```bash
2528
git checkout -b feature/your-feature-name
2629
```
2730

2831
### 4. Set Up Environment Variables
29-
* If the project uses the Gemini API, you'll need to get an API key:
30-
* Visit [Google AI Studio](https://aistudio.google.com/app/apikey)
31-
* Sign in with your Google account
32-
* Click on **"Get API Key"** or **"Create API Key"**
33-
* Copy your API key and add it to your `.env` file:
32+
33+
- If the project uses the Gemini API, you'll need to get an API key:
34+
- Visit [Google AI Studio](https://aistudio.google.com/app/apikey)
35+
- Sign in with your Google account
36+
- Click on **"Get API Key"** or **"Create API Key"**
37+
- Copy your API key and add it to your `.env` file:
3438
```bash
3539
GEMINI_API_KEY=your_api_key_here
3640
```
37-
* Make sure to **never commit your `.env` file** to the repository.
41+
- Make sure to **never commit your `.env` file** to the repository.
3842

3943
### 5. Test Your Changes
40-
* Work on code, UI, docs, or any improvement.
41-
* If you are fixing a bug or issue, **reference the issue number** in your commit message.
44+
45+
- Work on code, UI, docs, or any improvement.
46+
- If you are fixing a bug or issue, **reference the issue number** in your commit message.
4247

4348
### 6. Test Your Changes Locally
44-
* Make sure the project runs without errors:
49+
50+
- Make sure the project runs without errors:
4551

4652
```bash
4753
npm install
@@ -51,8 +57,11 @@ npm run server
5157
```
5258

5359
### 7. Test Your Changes in Production environment
54-
* Make sure the project runs without errors:
55-
- Note: It will automatically stops
60+
61+
- Make sure the project runs without errors:
62+
63+
* Note: It will automatically stops
64+
5665
```bash
5766
npm install
5867
npm run start
@@ -68,37 +77,38 @@ git push origin feature/your-feature-name
6877
```
6978

7079
### 9. Open a Pull Request
71-
* Go to your fork on GitHub.
72-
* You'll see a **Compare & Pull Request** button. Click it.
73-
* Provide details about what you changed and why.
74-
* Wait for review and feedback.
80+
81+
- Go to your fork on GitHub.
82+
- You'll see a **Compare & Pull Request** button. Click it.
83+
- Provide details about what you changed and why.
84+
- Wait for review and feedback.
7585
7686
## ✅ Contribution Guidelines
7787
78-
* Write **clear commit messages**.
79-
* Keep PRs **small and focused** on one feature/fix.
80-
* Follow project's coding style (React + CSS).
81-
* Update documentation if your change requires it.
82-
* Be respectful and collaborative with maintainers and other contributors.
88+
- Write **clear commit messages**.
89+
- Keep PRs **small and focused** on one feature/fix.
90+
- Follow project's coding style (React + CSS).
91+
- Update documentation if your change requires it.
92+
- Be respectful and collaborative with maintainers and other contributors.
8393

8494
## 💡 What You Can Work On
8595

86-
* Fix open issues in the repository.
87-
* Improve UI/UX (Glassmorphism, navbar, homepage, etc.).
88-
* Add more quiz categories or difficulty levels.
89-
* Write better documentation.
90-
* Improve performance or code readability.
96+
- Fix open issues in the repository.
97+
- Improve UI/UX (Glassmorphism, navbar, homepage, etc.).
98+
- Add more quiz categories or difficulty levels.
99+
- Write better documentation.
100+
- Improve performance or code readability.
91101

92102
## 🎯 Hacktoberfest Notes
93103

94-
* Make **quality contributions**. Spam PRs will be marked as **invalid** 🚫.
95-
* Each accepted PR counts toward your Hacktoberfest goals.
96-
* Don't hesitate to ask for clarifications in issues before starting work.
104+
- Make **quality contributions**. Spam PRs will be marked as **invalid** 🚫.
105+
- Each accepted PR counts toward your Hacktoberfest goals.
106+
- Don't hesitate to ask for clarifications in issues before starting work.
97107
98108
## 🙌 Need Help?
99109
100-
* Open a discussion or ask in issues.
101-
* Maintainers will be happy to help you get started.
110+
- Open a discussion or ask in issues.
111+
- Maintainers will be happy to help you get started.
102112
103113
---
104114

‎README.md‎

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Built with React, powered by Google's Gemini AI, and featuring a stunning glassm
2626

2727
---
2828

29-
3029
## 🔮 Roadmap
3130

3231
- [x] User authentication and profiles
@@ -74,7 +73,7 @@ We love contributions! Here's how you can help:
7473
### Ways to Contribute
7574

7675
- 🐞 Fix bugs and issues
77-
- ✨ Add new features
76+
- ✨ Add new features
7877
- 🎨 Improve UI/UX design
7978
- 💡 Suggest improvements
8079

@@ -109,15 +108,13 @@ This repository participates in **Hacktoberfest**!
109108
## 🛠️ Tech Stack
110109

111110
- **Frontend:** React + Vite
112-
- **Styling:** Custom CSS with Glassmorphism and Tailwind CSS
111+
- **Styling:** Custom CSS with Glassmorphism and Tailwind CSS
113112
- **AI:** Google Gemini 1.5 Flash
114-
- **Authentication & Database:** Supabase
113+
- **Authentication & Database:** Supabase
115114
- **Build Tool:** Vite
116115
- **Package Manager:** npm
117116
- **Deployment:** Vercel
118117

119-
120-
121118
---
122119

123120
## 🐛 Known Issues

‎SUPABASE_SETUP.md‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@ This guide will help you set up Supabase authentication and database for the Inq
2727
## Step 3: Update Environment Variables
2828

2929
Your `.env` file should already contain:
30+
3031
```
3132
VITE_SUPABASE_URL=https://xyz.supabase.co
3233
VITE_SUPABASE_ANON_KEY=.....
3334
```
3435

3536
If you need to update these values with your own Supabase project:
37+
3638
1. Replace `VITE_SUPABASE_URL` with your Project URL
3739
2. Replace `VITE_SUPABASE_ANON_KEY` with your anon public key
3840

@@ -43,6 +45,7 @@ If you need to update these values with your own Supabase project:
4345
3. Click "Run" to execute the SQL commands
4446

4547
This will create:
48+
4649
- `profiles` table for user profiles
4750
- `quiz_history` table for storing quiz results
4851
- Row Level Security (RLS) policies
@@ -56,9 +59,10 @@ This will create:
5659
3. Under "Redirect URLs", add: `http://localhost:5173`
5760
4. Enable email confirmations if desired (optional for development)
5861

59-
## Step 6: Testing
62+
## Step 6: Testing
6063

6164
1. Start your development server:
65+
6266
```bash
6367
npm run dev
6468
```
@@ -75,5 +79,3 @@ npm run dev
7579
- Take a quiz while signed in
7680
- Check that the quiz results are saved to your database
7781
- Verify in Supabase dashboard under Database > Tables > quiz_history
78-
79-

‎index.html‎

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/brain.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<link rel="stylesheet" href="/dist/assets/index.es-DGCo5Oyp.js ">
7+
<link rel="stylesheet" href="/dist/assets/index.es-DGCo5Oyp.js " />
88

9-
<title>Inquizzitive</title>
10-
<!-- Og tags -->
11-
<meta name="inquizzitive" content="AI-powered quiz application for government exam preparation - Master SSC, UPSC, Bank exams, and more with personalized practice sessions!" />
9+
<title>Inquizzitive</title>
10+
<!-- Og tags -->
11+
<meta
12+
name="inquizzitive"
13+
content="AI-powered quiz application for government exam preparation - Master SSC, UPSC, Bank exams, and more with personalized practice sessions!"
14+
/>
1215
<meta property="og:title" content="inquizzitive" />
13-
<meta property="og:description" content="AI-powered quiz application for government exam preparation - Master SSC, UPSC, Bank exams, and more with personalized practice sessions!" />
16+
<meta
17+
property="og:description"
18+
content="AI-powered quiz application for government exam preparation - Master SSC, UPSC, Bank exams, and more with personalized practice sessions!"
19+
/>
1420
<meta property="og:image" content="/brain.png" />
1521
<meta property="og:url" content="https://inquizzitive.vercel.app/" />
1622
<meta property="og:type" content="website" />

‎package-lock.json‎

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)