Welcome to CSNotes, a platform that hosts blog posts and informative articles related to coding/computer science.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Before you begin, ensure you have the following installed:
- Node.js (Download here)
- A package manager like npm (comes with Node.js), Yarn, or pnpm
- Clone the repository:
In your terminal, type in the following commands:
git clone https://github.com/DawoodKamar/CSNotes.git
cd csnotes- Install dependencies:
npm install
#or
yarn
#or
pnpm install- Set up the environment variables:
Create a .env file in the root of your project and include the necessary secret keys and variables.
To start the development server, run:
npm run dev
# or
yarn dev
# or
pnpm devOpen http://localhost:3000 in your browser to see the application.