Skip to content

sahib139/BlogAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Blogging API

Project SetUp ->

  • Start by cloning the repository
  • Go into the root folder ./blogAPI
  • Run command npm i
  • Create .env file in root directory and add following values in it ->
    DATABASE_HOST=<Database Host>
    DATABASE_PORT=<Database Running Port>
    DATABASE_USERNAME=<Database Username>
    DATABASE_PASSWORD=<Database Password corresponding to the Username>
    DATABASE_NAME=blogdb
    JWT_SECRET=<your_secret>
    PORT = <Server Port Number>
    
  • Run the migrations file using command npx typeorm-ts-node-commonjs migration:run -d ./src/config/database config.ts
  • Run npm start to run server!

Curl Command to test the API endPoints

User Routes

  • Sign Up ->
curl -X POST http:https://localhost:5000/signup \
-H "Content-Type: application/json" \
-d '{
  "username": "newuser",
  "email": "[email protected]",
  "password": "password123"
}'
  • Sign In ->
curl -X POST http:https://localhost:5000/signin \
-H "Content-Type: application/json" \
-d '{
  "email": "[email protected]",
  "password": "password123"
}'
  • SignIn using oauth(google) ->
curl -X POST http:https://localhost:5000/auth/google 

Posts Routes ->

  • Get All Posts ->
curl -X GET http:https://localhost:5000/posts \
-H "Authorization: Bearer <your_jwt_token>"
  • Get a Specific Post ->
-H "Authorization: Bearer <your_jwt_token>" \
-H "Content-Type: application/json" \
-d '{
  "title": "My First Post",
  "content": "This is the content of my first post."
}'
  • Update a Post ->
-H "Authorization: Bearer <your_jwt_token>" \
-H "Content-Type: application/json" \
-d '{
  "title": "Updated Post Title",
  "content": "This is the updated content of my post."
}'
  • Delete a Post ->
curl -X DELETE http:https://localhost:5000/posts/1 \
-H "Authorization: Bearer <your_jwt_token>"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published