Skip to content

Commit

Permalink
Merge pull request #5 from saisab29/main
Browse files Browse the repository at this point in the history
Updated installation guide along with options for different package m…
  • Loading branch information
joonshakya authored May 21, 2024
2 parents de4f0f8 + 686f8e8 commit b2e26d5
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,74 @@ CSIT21 is a comprehensive website designed to cater to the needs of Computer Sci

You can access the live version of CSIT21 at [https://www.csit21.cf](https://www.csit21.cf).

## Installation

1. Clone this repository

``` bash
git clone https://github.com/joonshakya/CSIT21
```
<br/>


2. Navigate to CSIT21 folder in your terminal


3. Install project dependencies



* If you are using npm
```bash
npm install
```

* If you are using pnpm
```bash
pnpm install
```

* If you are using yarn
```bash
yarn
```

* If you are using bun
```bash
bun install
```
<br/>

4. To run the server, run the following commands


* For npm
```bash
npm run dev
```

* For pnpm
``` bash
pnpm dev
```

* For yarn
``` bash
yarn dev
```

* For bun
``` bash
bun run dev
```
<br/>

## Contributing

Contributions to CSIT21 are welcome! If you'd like to contribute, please fork the repository, make your changes, and submit a pull request.
## Issues
If you encounter any issues or have suggestions for improvement, please feel free to open an issue on the GitHub repository.
Expand Down

0 comments on commit b2e26d5

Please sign in to comment.