Skip to content

Commit

Permalink
Folder Structure
Browse files Browse the repository at this point in the history
  • Loading branch information
subhadipbhowmik committed May 22, 2024
1 parent 42791c2 commit e147838
Showing 1 changed file with 40 additions and 4 deletions.
44 changes: 40 additions & 4 deletions Learn.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
<ol>
<li><a href="#1-project-description">Project Description</a></li>
<li><a href="#2-tech-stack">Tech Stack</a></li>
<li><a href="#3-running-the-project-locally">Running the Project Locally</a></li>
<li><a href="#4-contributing">Contributing</a></li>
<li><a href="#3-tech-stack">Project Structure</a></li>
<li><a href="#4-running-the-project-locally">Running the Project Locally</a></li>
<li><a href="#5-contributing">Contributing</a></li>
</ol>
</details>

Expand All @@ -39,7 +40,42 @@ To be able to contribute to this project, you should learn the following technol

You can start contributing with knowledge of ReactJs, Markdown and learn others with the time.

# <a name="3-running-the-project-locally">Know to run the Project Locally:</a>
# <a name="3-project-structure">Project Structure:</a>
Let's take a look at the project structure:

```bash
30-Days-Of-CPP
├── blog 📂
│ ├── blog-date-blog-title.md
│ ├── authors.yml
├── docs 📂
│ ├── day-01 📂
│ │ ├── content-title-01.md
│ │ ├── content-title-02.md
│ ├── day-02 📂
│ │ ├── content-title-03.md
│ │ ├── content-title-04.md
├── src 📂
│ ├── components 📂
│ ├── pages 📂


Write Content Day Wise in the docs folder and create a new blog post in the blog folder.

1. The `docs` folder contains all the content for the 30-Days-Of-CPP challenge.
2. Create Days Folner name like `day-01`, `day-02` and so on.
3. Inside the Day Folder, create a new markdown file for each content.
example
- day-01
- history-of-cpp.md
- structure-of-cpp.md
- day-02
- variables-and-data-types.md
- operators.md
And so on.


# <a name="4-running-the-project-locally">Know to run the Project Locally:</a>

To run the project locally, you need to set up the project carefully. Here are the steps:

Expand Down Expand Up @@ -75,7 +111,7 @@ To run the project locally, you need to set up the project carefully. Here are t

5. Open your browser and navigate to `http://localhost:3000/30-Days-Of-CPP` to see the project running locally.

# <a name="4-contributing">Contributing:</a>
# <a name="5-contributing">Contributing:</a>

Contributions to this project are welcome! Here's how you can contribute:
Expand Down

0 comments on commit e147838

Please sign in to comment.