Skip to content

Swift로 만든 REST-API로 Todo앱 만들기 프로젝트 입니다.

License

Notifications You must be signed in to change notification settings

ios-carki/ShareTodo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Language UI UI Xcode Version

Vapor Vapor DBeaver Docker

ShareTodo

Swift와 Vapor로 만든 REST-API로 Todo앱 만들기 1인 프로젝트 입니다. (Last Update: 2023.08.13)

  • Design - Carki
  • Client - Carki
  • Server - Carki

Index

BackEnd

Server

  • Local (Until Internal Test Period)

DB

  • Postgres

DB GUI

  • DBeaver

Authentication API

  • Register API
  • Login API

Register API

RequestModel
{
   "ID": UUID,
   "userID": String,
   "password": String,
   "nickName": String?
}
ResponseModel
{
   "message": String,
   "data": {
      "userID": String,
      "nickName": String?
   }
}

Login API

RequestModel
{
   "userID": String,
   "password": String,
}
ResponseModel
{
   "message": String,
   "data": {
      "id": UUID,
      "nickName": String,
      "userId": String,
      "token": String
   }
}
2023-08-07.12.17.42.mov

About

Swift로 만든 REST-API로 Todo앱 만들기 프로젝트 입니다.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages