Skip to content

Commit b9df622

Browse files
authored
Merge branch 'main' into fix/accessibility-navbar
2 parents 34f25ea + b98f40b commit b9df622

29 files changed

Lines changed: 1781 additions & 1727 deletions

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
- uses: actions/setup-node@v4
1010
with:
1111
node-version: 20
12-
- run: npm ci || npm install
12+
- run: npm ci --legacy-peer-deps || npm install --legacy-peer-deps
1313
- run: npm run lint

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true

blog/authors.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Aditya-Singh-Rathore:
3131
email: rathoreadityasingh30@gmail.com
3232
page: true # Turns the feature on
3333
description: >
34-
I'm a Self Learned Fabric Certified Data Engineer & an Open Source Contributor 🏆
34+
Aditya is a self-taught, Fabric-certified Data Engineer, GSSoC winner, author, and open-source enthusiast passionate about building scalable data solutions, contributing to the community, and sharing knowledge through blogs and public learning.
35+
3536
3637
socials:
3738
linkedin: aditya-singh-rathore0017

docs/assets/blog-01-new-issue.png

-1.46 KB
Loading

docs/assets/blog-02-new-issue.png

104 KB
Loading

docs/assets/blog-03-new-issue.png

167 KB
Loading

docs/assets/blog-04-new-issue.png

127 KB
Loading

docs/getting_started.md

Lines changed: 35 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -17,47 +17,51 @@ This guide walks you through everything you need to write and publish a blog pos
1717
:::
1818
---
1919

20-
## Step 1: Raise a New issue
21-
22-
Head to the the GitHub issue on this [repository](https://github.com/recodehive/recode-website/issues)
23-
<BrowserWindow url="https://github.com/recodehive/recode-website/issues" bodyStyle={{padding: 0}}>
24-
[![Github](assets\blog-01-new-issue.png)](https://github.com/recodehive/recode-website/issues)
20+
## Step 1: Raise a New issue on GitHub
21+
22+
Head to the the GitHub issue on this [repository](https://github.com/recodehive/recode-website/issues), raise an new issue under documentation update.
23+
:::info
24+
* Few things to remember, don't raise random generic topics.
25+
* Write from real experience, try to include real dashboard pictures, no copy paste articles.
26+
* You can generate AI pictures, but need to be edited any tools like Canva.
27+
* Your article must teach something offical documentation doesnot. Means no Intro to X or What is X.
28+
* Start working on Issue When its assigned to you by @sanjay-kv or any Maintainer. ref step 4.
29+
<Tabs>
30+
<TabItem value="Step 1" label="Step 1">
31+
<BrowserWindow url="https://github.com/recodehive/recode-website/issues" bodyStyle={{padding: 0}}>
32+
[![Github](assets/blog-01-new-issue.png)](https://github.com/recodehive/recode-website/issues)
2533
</BrowserWindow>
34+
</TabItem>
2635

36+
<TabItem value="Step 2" label="Step 2">
37+
<BrowserWindow url="https://github.com/recodehive/recode-website/documentation" bodyStyle={{padding: 0}}>
38+
[![Github](assets/blog-02-new-issue.png)](https://github.com/recodehive/recode-website/documentations)
39+
</BrowserWindow>
2740

28-
## Step 1: Fork and Clone the Repository
29-
30-
1. Go to [https://github.com/recodehive/recode-website](https://github.com/recodehive/recode-website) and click **Fork** (top-right corner).
31-
32-
2. Clone your fork to your local machine:
33-
34-
```bash
35-
git clone https://github.com/your-username/recode-website.git
36-
cd recode-website
37-
```
38-
39-
3. Add the upstream remote so you can stay in sync:
40-
41-
```bash
42-
git remote add upstream https://github.com/recodehive/recode-website.git
43-
```
44-
45-
---
46-
47-
## Step 2: Install Dependencies and Run Locally
41+
</TabItem>
42+
43+
<TabItem value="Step 3" label="Step 3">
44+
<BrowserWindow url="https://github.com/recodehive/recode-website/issues/1586" bodyStyle={{padding: 0}}>
45+
[![Github](assets/blog-03-new-issue.png)](https://github.com/recodehive/recode-website/issues/1577)
46+
</BrowserWindow>
47+
</TabItem>
4848

49-
```bash
50-
npm install
51-
npm start
52-
```
49+
<TabItem value="Step 4" label="Step 4">
50+
<BrowserWindow url="https://github.com/recodehive/recode-website/issues/1577" bodyStyle={{padding: 0}}>
51+
[![Github](assets/blog-04-new-issue.png)](https://github.com/recodehive/recode-website/issues/1577)
52+
</BrowserWindow>
53+
</TabItem>
54+
55+
</Tabs>
5356

54-
This starts a local development server. Open [http://localhost:3000](http://localhost:3000) in your browser to preview the site live. Changes you make to files will hot-reload automatically.
57+
:::
5558

59+
#### Just follow the steps on forking the repositories and installing the dependencies on your local repository, if you dont know refer the steps 2 to 6 on [welcome page](https://www.recodehive.com/docs/).
5660
---
5761

5862
## Step 3: Create a New Branch
5963

60-
Never commit directly to `main`. Create a dedicated branch for your blog post:
64+
Never commit directly to `main`. Create a dedicated branch for your blog post: test
6165

6266
```bash
6367
git checkout -b blog/your-blog-title

0 commit comments

Comments
 (0)