A University project done by my peers and I.
- Clone the repository
git clone https://github.com/gTonelli/pttinder.git
- Install dependencies
npm install
- Install mysql database https://dev.mysql.com/doc/mysql-installation-excerpt/5.7/en/
- Create database
mysql -u root -p
CREATE DATABASE pettinder;
- Create a .env file, and write your environment's custom values to the file
PORT=3000 DB_HOST=localhost DB_USER=root DB_PASSWORD=your_password DB_DATABASE=pettinder
- Run the server
npm start
- Visit the server at http://localhost:3000