Coder Social home page Coder Social logo

todo-app-go's Introduction

todo-app-go

todo application

GO version

1.11.4

DB

PostgreSQL 13.3

table

@startuml ERDiagram
title todo-app diagram
entity "users" {
    + id [PK]
    ==
    * uuid:varchar(255)
    name:varchar(255)
    email:varchar(255)
    password:varchar(255)
    created_at:timestamp
    updated_at:timestamp
    deleted_at:timestamp
    is_deleted:boolean
}

entity "todos" {
    + id [PK]
    ==
    # user_id [FK(users,id)]
    content:text
    created_at:timestamp
    updated_at:timestamp
    is_deleted:boolean(default:false)
    deleted_at:timestamp
}

entity "sessions" {
    + id [PK]
    ==
    # user_id [FK(users,id)]
    * uuid:varchar(255)
    email:varchar(255)
    created_at:timestamp
    updated_at:timestamp
}

users --o{ todos
users --|{ sessions
@enduml

todo-app-go's People

Contributors

thaqoo avatar

Watchers

 avatar

todo-app-go's Issues

[親issue]Todo関係機能作成

CLUD機能インターフェース作成

  • Todoの一覧ページの作成
  • Todoの作成ページの作成
  • Todoの更新ページの作成
  • Todoの削除の作成

認証機能作成

  • ユーザーの登録ページの作成
  • ユーザーのログインページの作成
  • ユーザーのログアウト1
  • ユーザーのログアウト2

リリース作業

  • ソースコンパイル
  • デプロイ先検討、環境作成
  • テストドメイン取得
  • デプロイ実施
  • 動作確認

webサーバ機能

概要

  • サーバ呼び出し機能作成
  • JS, CSS設定
  • レイアウトの共通化

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.