This is a project that aims to create a platform for people to share their knowledge and learn from others.
-
Change directory to the frontend folder:
cd frontend
-
Install the dependencies:
npm install # or bun install
-
Create a
.env
file in the root directory and copy the contents from the provided.env.example
file:cp .env.example .env
Make sure to update the values in the
.env
file according to your specific configuration. -
Start the frontend server:
npm run dev # or bun dev
-
Change directory to the backend folder:
cd backend
-
Install the dependencies:
bun install
-
Create a
.env
file in the root directory and copy the contents from the provided.env.example
file:cp .env.example .env
Make sure to update the values in the
.env
file according to your specific configuration. -
Start the backend server:
bun dev