GithubHelp home page GithubHelp logo

kiyo510 / kaito-twitter-clone-bootcamp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ok-os-job-change-team/kaito-twitter-clone-bootcamp

0.0 0.0 0.0 324 KB

Hitorigotoのリポジトリ

JavaScript 1.94% Ruby 69.87% CSS 0.64% HTML 27.43% Dockerfile 0.13%

kaito-twitter-clone-bootcamp's Introduction

Hitorigoto

概要

  • "Hitorigoto"は簡易的なツイッターアプリです。

主な機能

  • ユーザー登録とログイン
    • ユーザーはアカウントを作成し、ログインすることでアプリを利用できます。
  • ひとりごとの投稿
    • ユーザーはひとりごと(140字以内のテキストメッセージ)を入力してを投稿できます。
  • ひとりごとの表示
    • ユーザーは投稿されたひとりごとをタイムライン上で閲覧できます。
  • ひとりごとのいいね機能
    • ユーザーは他のユーザーが投稿したひとりごとにいいねを付けることができます。
  • フォロー/フォロワー機能
    • ユーザーは他のユーザーをフォローすることができます。

demo動画

demo動画_230229

使用技術

カテゴリー 技術
バックエンド Ruby 3.2.2, Ruby on Rails 7.0.7.2
フロントエンド HTML, CSS, JavaScript, Bulma
データベース mysql 8.0.34
インフラ(開発環境) Docker
CI/CD GitHub Actions
その他 Git, GitHub, RSpec, Rubocop

環境構築

コマンド一覧

# イメージをbuildする
$ docker-compose build

# コンテナを起動する
$ docker-compose up -d

# コンテナを停止し、作成したコンテナとネットワークを削除する
$ docker-compose donw

# コンテナ内に入る(実行中のコンテナ内でコマンドを実行する)
# Reference: https://docs.docker.jp/engine/reference/commandline/compose_exec.html
$ docker exec -it web_app bash

ページを表示する

画面遷移図

ER図

erDiagram
Users ||--o{ Tweets:""
Users ||--o{ Favorites:"" 
Favorites }o--|| Tweets:""
Users ||--o{ Relationships:""
Relationships }o--|| Users:""

Users {
  integer id
  string email
  string pass
  string created_at
  string updated_at
}
Tweets {
  integer id
  integer user_id
  string title
  string content
  string created_at
  string updated_at
}
Favorites {
  integer id
  integer user_id
  integer tweet_id
}
Relationships{
  integer id
  integer following_id
  integer follower_id
}

kaito-twitter-clone-bootcamp's People

Contributors

kaito1290 avatar ochi-sho-private-study avatar

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.