Todo application for Web Development course - Final project
Get a copy of the project
git clone https://github.com/rawand-faraidun/todos.git
- Through the terminal install the necessary packages, within root folder, then both
client
andserver
:
npm i;
cd server; npm i;
cd client; npm i;
- Pay attention to
.env.example
file in theserver
directory. rename it into.env
or create a file with.env
name and add the necesarry env variables. - Each
server
orclient
can be started directly from their npm commands, or you can the dev commands specified in outerpackage.json
.
npm run server-dev
npm run client-dev
- Or use
dev
command to run both concurrently.
npm run dev