Smile is a social network built with Node.js using a Postrgres database that allows users to collect, like and share quotes.
To start the app you'll need to install a few things and initialize the database. Lets start with the app itself which is located at: $ git clone https://github.com/jnware7/Smile.git
Next we'll add the dependencies:
$ npm i
After everything has been installed you'll need to initialize your database luckily we've written a script for that:
$ npm run db:create
Now to load the schema:
$ npm run load_schema
You can reset the database if need be with:
$ npm run db:reset
Next you'll want to get your server started:
$ npm start
And finally open a browser and navigate to http://localhost:3000
