Giter Site home page Giter Site logo

qlasop-app's Introduction

Qlasop

量子アニーリングを用いた時間割最適化アプリ App Link

DBにはSupabaseの無料プランを使用しており, バックエンドの最適化計算にはFixstars Amplify AEの無料プランを使用しているため, 長期間メンテナンスをしない場合,以下の問題が発生することがあります.

  • DBからの科目データの取得.
  • 履修科目の最適化

Environment

Directory

.
├── public                  # 画像等のアセット
├── src                     # コード
│   ├── app                 # ページの構成
│   │   ├── layout.tsx      # Root - レイアウト
│   │   ├── page.tsx        # Root - ページ
│   │   └── [path]
│   │       ├── layout.tsx  # [path] - レイアウト
│   │       └── page.tsx    # [path] - ページ
│   ├── components          # コンポーネント
│   │   ├── page            # ページに対応するコンポーネント
│   │   ├── model           # modelに関するコンポーネント
│   │   ├── ui              # modelに関係のない見た目を伴うコンポーネント
│   │   └── functional      # modelに関係のない見た目を伴わないコンポーネント
│   ├── constants           # 定数
│   ├── libs                # ライブラリ
│   ├── models              # modelレイヤー:ドメインモデル
│   ├── repositories        # repositoryレイヤー:外部との通信を担う
│   ├── styles              # 全体のスタイル
│   ├── store               # Global State を管理
│   ├── usecases            # usecaseレイヤー:ユーザが行う処理
│   └── utils               # ユーティリティロジック
├── README.md
├── .eslintrc.js
├── .eslintignore
├── .gitignore
├── .prettierrc.js
├── next-env.d.ts
├── next.config.js
├── package.json
├── tsconfig.json
└── yarn.lock

Commands

yarn

# パッケージインストール
$ yarn

# 開発サーバーを立てる
$ yarn dev

git

# 対象ファイルをインデックス(コミット対象)に追加
$ git add {ファイルパス1} {ファイルパス2}...

# 変更したファイルの一覧を出力
$ git status

# 指定したエディタでメッセージを書き、インデックスにある全ファイルをコミット
$ git commit

# メッセージを付け、インデックスにある全ファイルをコミットする
$ git commit -m "{メッセージ}"

# 現在のローカルブランチを origin にプッシュする
$ git push

# 対象ブランチに切り替える
$ git checkout {ブランチ名}

# 対象ブランチを新規作成し、切り替える
$ git checkout -b {ブランチ名}

# ワークツリーにある対象ファイルの変更を取り消す
$ git checkout {ファイルパス}

# 最新の履歴を取得する
$ git fetch

# 対象ブランチを、現在のブランチへマージする
$ git merge {ブランチ名}

# git fetch + git merge
$ git pull

qlasop-app's People

Contributors

t4ke1u avatar

Stargazers

 avatar

Watchers

 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.