Skip to content

Twitter clone API written with .Net 6 and Entity Framework.

Notifications You must be signed in to change notification settings

CatalinIuga/twizzle-api

Repository files navigation

twizzle-api

A Twitter clone REST API built with .Net 6, Entity Framework and Postgres SQL.

File uploads (will be) handled by Cloudindary.

Routes

Auth

auth

User

user

Twizz (Tweet)

twizz

Like

like

Follow

follow

Comment

comment

Schemas

Comment {
id	integer($int32)
userId	integer($int32)
twizzId	integer($int32)
content	string
nullable: true
parentCommentId	integer($int32)
nullable: true
createdAt	string($date-time)
updatedAt	string($date-time)
}

Follow {
id	integer($int32)
followerId	integer($int32)
followingId	integer($int32)
createdAt	string($date-time)
updatedAt	string($date-time)
}

Like {
id	integer($int32)
userId	integer($int32)
twizzId	integer($int32)
createdAt	string($date-time)
updatedAt	string($date-time)
}

Login {
email	string
nullable: true
password	string
nullable: true
}

Twizz {
id	integer($int32)
userId	integer($int32)
content	string
nullable: true
mediaURLs	[...]
createdAt	string($date-time)
updatedAt	string($date-time)
}

User {
id	integer($int32)
username	string
nullable: true
email	string
nullable: true
password	string
nullable: true
bio	string
nullable: true
avatarURL	string
nullable: true
createdAt	string($date-time)
updatedAt	string($date-time)
}

About

Twitter clone API written with .Net 6 and Entity Framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages