A simple blog web-app, built with Django.
erDiagram
User {
string username
string email
string password
}
Post {
string title
string author
string body
}
User ||--o{ Post : creates
Dummy Blog is a web-app for users to pour their thoughts in a simple manner. It supports basic authentication and multiple users.