A CMS-style blog site similar to a Wordpress site, where developers can publish their blog posts and comment on other developers’ posts as well.
git clone https://github.com/WebDevMullins/mvc-tech-blog.git
npm install
Rename the .env.EXAMPLE
file to .env
. Update with your credentials.
DB_NAME=databasename #replace with the database name
DB_USER=yourusername # replace with your user name
DB_PASSWORD=yourpassword # replace with your password
Log in to MySQL, and use the following command to set up database:
source db/schema.sql
In a terminal, run the following command to seed the database:
npm run seed
From the root directory, run the following to start the application:
npm run start
Tech Blog is MIT licensed.