Ye hai README
The project consists of two parts client and server.
The folder new_client is under development currently and will replace the client folder someday.
Tips to get started :-
- Clone the repo.
git clone https://github.com/CommunityOfCoders/COCWebsite.git
- Navigate to the server folder.
cd server
-
This one is dependent on what you wish to start henceforth.
a. To start the server, type
npm run start
.b. To start the development server (the one that uses nodemon), type
npm run serve
.c. To start the new_client folder, type
npm run new_client
.d. To start both the server and the new_client concurrently, type
npm run dev
.
For the developers and the contributors :-
Always run the following two commands in all folders containing node_modules to ensure that the package-lock.json
doesn't break.
npm i
npm ci