Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 530 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 530 Bytes

Expense Tracker [Full Stack]

A MERN stack application to keep track of one's daily expenses.

Ensure adding config.env inside the config folder in the root directory with the following data.

NODE_ENV = <environment_name>
PORT = <port_no>

MONGO_URI = <mongodb__connection_string>

To install all the necessary dependencies

npm install
cd client
npm install

To start the server in development mode

npm run dev

To start the server in production mode

npm start