Skip to content

cgabrieu/my-wallet-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Wallet 👛

This is the frontend repo, access the backend repo here.


View the deploy

About

Users are able to sign in and manage their expenses. You can add and remove earnings and expenses. Sign up and have better control of your financial life!


Technologies

Tools that were used in the project:


Getting Started

To run locally follow the steps

Prerequisites

This is an example of how to list things you need to use the software and how to install them.

  • npm
npm install npm@latest -g

Installation

  1. Create the root folder named mywallet and access it
mkdir mywallet && cd mywallet
  1. Clone the frontend repo
git clone https://github.com/cgabrieu/my-wallet-frontend.git
  1. Install dependencies with npm
npm install
  1. Clone the backend repo
git clone https://github.com/cgabrieu/my-wallet-backend.git
  1. Install dependencies with npm
npm install
  1. Create a database using the command below via postgres
CREATE DATABASE mywallet;
  1. Automatically create all necessary tables to backend repo with dump.

  2. Connect your backend to the database, for that, rename the .env.example to .env.dev and fill in your data.

How to run

  1. Run the frontend using the command (remember to be on the backend repo):
npm run start:dev
  1. Run the frontend using the command (remember to be on the fronend repo):
npm start

Developer