Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/wncc/SoC-Portal
Browse files Browse the repository at this point in the history
  • Loading branch information
Prater-12 committed Oct 15, 2023
2 parents 13c3454 + 5de084f commit d6b07fb
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ An on-going project of the Web and Coding Club. Built using Django REST Framewor
Clone the Git repository:

```shell
git clone https://github.com/wncc/SoC-Portal/tree/main
git clone https://github.com/wncc/SoC-Portal.git
```

Install JS packages
Expand All @@ -27,7 +27,7 @@ Create Virtual Environment:
cd backend
python3 -m venv venv
./venv/Scripts/Activate.ps1 # Windows
# Linux/MacOS
source ./venv/bin/activate # Linux/MacOS
pip3 install -r requirements.txt
```

Expand All @@ -44,6 +44,17 @@ Run Application

## Frontend

This project generates documentation using [StoryBook](https://www.npmjs.com/package/@storybook/react). Make sure that you add JSDoc comments for the components. To access the documentation, run the following commands on your terminal:

```bash
# installation
npm install --save-dev @storybook/react
# configuration
npx sb init
# to view the documentation
npx storybook
```

## Backend

The project generates API documentation using [drf-yasg](https://github.com/axnsan12/drf-yasg), provided through Swagger and ReDoc. To access the API documentation, follow these steps:
Expand Down

0 comments on commit d6b07fb

Please sign in to comment.