Skip to content

Commit 533ad3f

Browse files
committed
added readme
1 parent 9f6cbda commit 533ad3f

File tree

7 files changed

+38
-2
lines changed

7 files changed

+38
-2
lines changed

.DS_Store

0 Bytes
Binary file not shown.

README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,37 @@
1-
# project-2
1+
# Tech Blog
2+
![License](https://img.shields.io/badge/License-MIT-blue.svg "License Badge")
3+
4+
## Description
5+
6+
This is a CMS-Style blog where users can make posts, comment on posts, delete their posts and update their posts. Comments are also displayed on each post.
7+
8+
9+
## Links
10+
11+
* [My GitHub](https://github.com/webdev410)
12+
* [Repo](https://github.com/webdev410/blog)
13+
* [Deployed](https://secure-spire-42375.herokuapp.com)
14+
15+
For questions, please email [email protected]
16+
17+
## Technologies
18+
19+
* [Node.JS](https://nodejs.org/en/docs/)
20+
* [express](https://www.npmjs.com/package/express)
21+
* [mySQL2](https://www.npmjs.com/package/mysql2)
22+
* [bcrypt](https://www.npmjs.com/package/bcrypt)
23+
* [sequalize](https://sequelize.org/)
24+
* [connect-session-sequalize](https://www.npmjs.com/package/connect-session-sequelize)
25+
* [express-session](https://www.npmjs.com/package/express-session)
26+
* [express-handlebars](https://www.npmjs.com/package/express-handlebars)
27+
28+
## Screenshots
29+
30+
### Homepage
31+
![](./assets/screenshot-1.png)
32+
### Dashboard
33+
![](./assets/screenshot-2.png)
34+
### New Post
35+
![](./assets/screenshot-4.png)
36+
### Edit Post
37+
![](./assets/screenshot-3.png)

assets/screenshot-1.png

101 KB
Loading

assets/screenshot-2.png

47 KB
Loading

assets/screenshot-3.png

41.9 KB
Loading

assets/screenshot-4.png

38 KB
Loading

seeds/postData.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{
99
"id": 2,
1010
"title": "Post Number Two",
11-
"post_content": "Content of post 1.",
11+
"post_content": "Content of post 2.",
1212
"user_id": 2
1313
},
1414
{

0 commit comments

Comments
 (0)