A simple blogging app enabling users to create, edit, and delete blog posts.These blog posts persist and can be retrieved anytime with the help of database.
- Create, update, delete posts
- PostgreSQL for database
- EJS for templating
- Minimial UI
- Node.js + Express
- PostgreSQL
- EJS + HTML/CSS
- Clone the repo
- Run
npm install - Create
poststable in PostgreSQL:CREATE TABLE posts ( id SERIAL PRIMARY KEY, title TEXT NOT NULL, content TEXT NOT NULL, date TEXT );
- Create a
.envfile with your DB credentials - Run
node index.jsand go tohttp://localhost:3000
Made by Mythili ❤️


