LoginSignup
0
0

More than 1 year has passed since last update.

StackBlitzの導入からGitHub同期まで

Last updated at Posted at 2022-06-25

StackBlitz アクセス

https://stackblitz.com/
image

StackBlitz の特徴

  • Webブラウザ上の開発環境
  • 環境構築が不要
  • Angularに対応

StackBlitz設定

  • GitHubサインイン
    プロジェクト情報を保存するにはGitHubサインインが必要
    image

  • プロジェクトの作成
    image
    image

  • テーマ設定
    image
    image
    ☝私はこちらの方がしっくり来ます。

既存GitHubリポジトリのオープン

下記URLで既存GitHub登録プロジェクトをStackBlitzから開くことができます。
https://stackblitz.com/github/___YOUR_PATH___

例)
https://stackblitz.com/github/jun-knd/material.angular.github/tree/material
"Open in StackBlitz" のリンクを付ける場合は以下

<a href="https://stackblitz.com/github/___YOUR_PATH___">
  <img
    src="https://developer.stackblitz.com/img/open_in_stackblitz.svg"
    alt="Open in StackBlitz"
  />
</a>

👇例  
<a href="https://stackblitz.com/github/jun-knd/material.angular.github/tree/material">
  <img
    src="https://developer.stackblitz.com/img/open_in_stackblitz.svg"
    alt="Open in StackBlitz"
  />
</a>

👇例
image

image

Fork してローカルリポジトリを生成

image

GitHubリポジトリを作成し接続

  • Connect Repository
    image

  • Create repo&push
    image

  • GitHubに同期されたプロジェクトになる
    image

  • トップページにアクセスすると、作成したProjectがPROJECTSに表示される。
    image

👇参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0