dragonball-character-database
dragonball-character-database copied to clipboard
A database of characters from the Dragonball Universe
Dragonball Z Character Database

Installation and Setup
Download this repo to your local machine. Navigate to the root folder for both the backened and the client. Use your Terminal App to run the commands below.
You need to have the REST API Server and the Client App server running together at the same time for the app to work.
backend folder
- Run the command
npm installto install node_modules
client folder
- Run the command
npm installto install node_modules
Running the app
- Open the
app.jsfile inside of client/public/js/app.js - Uncomment the variable for
localAPIand replace the variable inside ofprofileResponsesee the code snippet below.
const localAPI = 'http://localhost:3000/';
// const onlineAPI = 'https://dbz-database-backend.onrender.com/';
const profileResponse = await fetch(`${localAPI}${user}`);
cd into the backend folder and run npm run servers
The client app is running locally, on port 8080 http://localhost:8080/
The backend server is running locally, on port 3000 http://localhost:3000/