Chi-Beas is a virtual pet game inspired by the original Tamagotchi. It's life and health is dependent on a timer and once the time is up the game is over. Through triggering random events the health of the pet can be extended but there is peril as not all events will be so helpful.
Note: This setup tutorial assumes that you already have installed a package manager like npm and the version control system git.
- Open your terminal.
- In your terminal, go to the folder where you want to save the app.
- Run the command
git clone git@github.com:fionaberkery/VirtualPet_Chi-Beas.git
- Once the download has ended, run
cd client
- Now, to install all the modules for the client run
npm i
- Once the download is completed, run
cd ../server
- Finally, to install the modules for the server run
npm i
- Optional: To get some pre-created players and scores in the database run
npm run seeds
after the last command.