Skip to content

Americana808/BlogAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PersonalBlogAPI

RESTful blog API using ASP.NET, EF Core, and SQLite. Provides full CRUD operations.

Features

  • Create, read, update, and delete blog posts
  • persistent storage using relational database
  • API documentation with Swagger
  • RESTful endpoints

API Endpoints

Method Endpoint Description
GET /api/Posts Gets all posts
POST /api/Posts Create post
GET /api/Posts/{id} Get post by ID
PUT /api/Posts/{id} Update existing specified post
DELETE /api/Posts/{id} Delete specified post

Get started

  1. clone repo
  2. build solution to restore NuGet packages
  3. create local database
Add-Migration DBName
update-Database
  1. run project

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages