Skip to content

ramyaram2092/fibonacci-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fibonacci Sequence Generator

A simple full stack application which computes and displays the fibonacci sequence

Description

The front end communicates with the backend API, which is powered by Express and stores data in a Relational database.

  • The front has two pages. The first page has an input box and a button where the user is prompted to type the fibonacci sequence's length
  • The second page displays the requested fibonacci sequence seperated by commas with a provison to return back to the previous page

Technologies

  • Frontend: React, HTML, CSS, JavaScript
  • Backend: Express.js, Node.js
  • Database: MySQL

Branch Information

Developed the system in develop branch and merged into the main branch
Latest working code is available in main branch

Installation

Clone the repository:

git clone https://github.com/ramyaram2092/fibonacci-generator.git
cd fibonacci-generator

Install dependencies for both frontend and backend:

cd client
npm install

cd ../server
npm install

Set up the database:

Download mysql database update the .env file in the server/.env folder with your credentials.
Note : The application takes care of creating database and table. Only the mysql crendtails like the username and password is needed
mysql server runs at port 3306

Start the backend server:

cd server
npm start / npm run dev
express server runs at http://localhost :8080

Start the frontend development server:

cd client
npm start

The client will open at http://localhost :3000

Demo

demo.mp4

Design Decisions

DesignDecisions.pdf

Limitations

Limitations.pdf

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published