An open API service indexing awesome lists of open source software.

https://github.com/yashintech/fintrax


https://github.com/yashintech/fintrax

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# Expense-Tracker-Mern

A fully-featured Expense-Tracker WebApp , built with the MERN stack.

### Backend

### Front-end

### Database

### Installation

1. Clone this repository

```
git clone https://github.com/YashInTech/FinTrax.git
```

2. Install dependencies

```
cd FinTrax
cd frontend
npm install
cd..
cd backend
npm install
```

3. Configure environment variables in your new .env file. To acquire your MONGO_URI, create a cluster for free over at https://www.mongodb.com/.

```
MONGO_URI=
```

4. Run the server

```
npm run server
```

5. Start a new terminal and run react's development server

```
cd FinTrax
cd frontend
npm start
```