CMS blog, WordPress / Medium style full stack application.
Users who sign up and login to the site can subsequently view all published blog posts, add comments, and publish their own content.
After cloning the repo to your machine, open your terminal and cd into the project directory. Next, run:
mysql -u root -p;
USE blog_db;
SOURCE db/schema.sql;
exit;
After authenticating with mySQL and selecting the project database, in the same terminal, run:
npm i
npm run seeds
npm start
After installing all dependencies, be sure to create a ".dotenv" file to hide credentials as you wish.
Open your browser and navigate to localhost:3001, where you will be prompted to login or signup.
Reach out ianclark@gmail.com