Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 757 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 757 Bytes

Revolut Clone

Introduction

This is a cloned mobile app UI of Revolut, an innovative e-banking application. Created for portfolio purposes, it showcases full-stack web application development. The project is still in progress.

Quick Start

Check Storybook of UI Components

To view the UI components in isolation, run:

cd frontend
npm install
npm run storybook

Start MySQL Database

Navigate to the MySQL directory and start the database using Docker:

cd backend/mysql
docker-compose up -d

Start RESTful API Backend

cd backend
npm run resetDB
npm run start

Start Frontend Development Server

In another terminal, start the frontend development server:

cd frontend
npm run dev