diff --git a/READ ME.md b/READ ME.md deleted file mode 100644 index 9a191dc..0000000 --- a/READ ME.md +++ /dev/null @@ -1,45 +0,0 @@ -# BLOG APPLICATION - -## TECHNOLOGE - React - Redux - TypeScript - Tailwind CSS - Material UI - MongoDB - Express - Node JS -## Installation - -## Getting Start - - npm start //for server - cd client - npm start //for client - -## Information for start - - Of course, you can Sign Up and Log In. - And then the chrome will go to Dashboard. - ### You can watch all blog. ----READ - And at Navbar there is "My Blog". - If you click that, you go to My Blog page. - - ### In there, you can add blog by clicking of "Add" button. ----CREATE - When you push "Like Button" like number will increased. - And you can click a blog then you can see the detail of that. - ### In there, you can edit and update and delete blog. ----UPDATE & DELETE - - In either dashboard and myblog, you can increase watches and likes ----WATCH & LKIES - -## Features - - implement simple login screen(email, full name, password) - - create a dashboard page to show all blogs as a list - - implement create blog page to create a new blog - - implement update page to update content of the blog - - implement blog detail page to show all contents of the blog - - increase watches when users visit a blog page(except creator) - - increase likes when users click like button on the blog page - - implement user page which contains all blogs created by that user - - connect to backend - diff --git a/README.md b/README.md index d1b3f3a..bf38e7e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # BLOG APPLICATION ## TECHNOLOGE + React Redux TypeScript @@ -9,30 +10,34 @@ MongoDB Express Node JS + ## Installation - + ## Getting Start - npm start //for server - cd client - npm start //for client + npm run dev ## Information for start Of course, you can Sign Up and Log In. And then the chrome will go to Dashboard. - ### You can watch all blog. ----READ + +### You can watch all blog. ----READ + And at Navbar there is "My Blog". - If you click that, you go to My Blog page. + If you click that, you go to My Blog page. + +### In there, you can add blog by clicking of "Add" button. ----CREATE - ### In there, you can add blog by clicking of "Add" button. ----CREATE When you push "Like Button" like number will increased. And you can click a blog then you can see the detail of that. - ### In there, you can edit and update and delete blog. ----UPDATE & DELETE + +### In there, you can edit and update and delete blog. ----UPDATE & DELETE In either dashboard and myblog, you can increase watches and likes ----WATCH & LKIES ## Features + - implement simple login screen(email, full name, password) - create a dashboard page to show all blogs as a list - implement create blog page to create a new blog diff --git a/package.json b/package.json index ecffc12..616d122 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "description": "", "main": "index.js", "scripts": { + "start": "concurrently \"npm run server\" \"npm run client\"", "dev": "concurrently \"npm run server\" \"npm run client\"", "server": "nodemon server.js", "client": "cd client && npm start"