From 1625c8a41e2a66c38ce57f998557ef3f4ff0951e Mon Sep 17 00:00:00 2001 From: POPPIN-FUMI Date: Wed, 27 Dec 2023 16:17:31 +0100 Subject: [PATCH] update install oneliner --- articles/doc/en/skeet-firestore/quickstart.md | 8 ++++++++ articles/doc/en/skeet-firestore/setup.md | 11 +++++++++++ articles/doc/en/skeet-graphql/quickstart.md | 10 +++++++++- articles/doc/en/skeet-graphql/setup.md | 11 +++++++++++ articles/doc/ja/skeet-firestore/quickstart.md | 8 ++++++++ articles/doc/ja/skeet-firestore/setup.md | 11 +++++++++++ articles/doc/ja/skeet-graphql/quickstart.md | 8 ++++++++ articles/doc/ja/skeet-graphql/setup.md | 11 +++++++++++ 8 files changed, 77 insertions(+), 1 deletion(-) diff --git a/articles/doc/en/skeet-firestore/quickstart.md b/articles/doc/en/skeet-firestore/quickstart.md index 1be3afe..c8755e6 100644 --- a/articles/doc/en/skeet-firestore/quickstart.md +++ b/articles/doc/en/skeet-firestore/quickstart.md @@ -7,11 +7,19 @@ description: A simple guide to getting started with the Skeet framework. ## Installing Skeet CLI Skeet CLI is a command line tool for efficiently using the Skeet framework. You can install it with the following command. +If npm is already installed, you can install it with the following command. ```bash $ npm i -g @skeet-framework/cli ``` +If npm is not installed, you can install it with the following command. +(This command installs nodenv, node, npm, @skeet-framework/cli and edits .profile/.zshrc.) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +``` + ## Creating a Google Cloud Project By creating a Google Cloud Project, you can utilize various resources of Google Cloud. Please refer to the official Google Cloud documentation to create a new project. diff --git a/articles/doc/en/skeet-firestore/setup.md b/articles/doc/en/skeet-firestore/setup.md index eeb3b37..5a34907 100644 --- a/articles/doc/en/skeet-firestore/setup.md +++ b/articles/doc/en/skeet-firestore/setup.md @@ -34,11 +34,22 @@ You can start writing app logic immediately without worrying about infrastructur ### ① Install Skeet/Firebase CLI +Skeet CLI is a command line tool for efficiently using the Skeet framework. You can install it with the following command. +If npm is already installed, you can install it with the following command. + ```bash $ npm i -g @skeet-framework/cli $ npm install -g firebase-tools ``` +If npm is not installed, you can install it with the following command. +(This command installs nodenv, node, npm, @skeet-framework/cli and edits .profile/.zshrc.) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +$ npm install -g firebase-tools +``` + ### ② Create Skeet App ```bash diff --git a/articles/doc/en/skeet-graphql/quickstart.md b/articles/doc/en/skeet-graphql/quickstart.md index c9e27b1..ffd541b 100644 --- a/articles/doc/en/skeet-graphql/quickstart.md +++ b/articles/doc/en/skeet-graphql/quickstart.md @@ -10,12 +10,20 @@ This guide will help you quickly get started with the Skeet framework. ## Installing Skeet CLI -The Skeet CLI is a command-line tool designed for efficient usage of the Skeet framework. Install it with the following command: +Skeet CLI is a command line tool for efficiently using the Skeet framework. You can install it with the following command. +If npm is already installed, you can install it with the following command. ```bash $ npm i -g @skeet-framework/cli ``` +If npm is not installed, you can install it with the following command. +(This command installs nodenv, node, npm, @skeet-framework/cli and edits .profile/.zshrc.) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +``` + ## Docker Installation Skeet supports local development using Docker. diff --git a/articles/doc/en/skeet-graphql/setup.md b/articles/doc/en/skeet-graphql/setup.md index 0aad753..868fc4d 100644 --- a/articles/doc/en/skeet-graphql/setup.md +++ b/articles/doc/en/skeet-graphql/setup.md @@ -34,11 +34,22 @@ You can start writing app logic immediately without worrying about infrastructur ### ① Install Skeet/Firebase CLI +Skeet CLI is a command line tool for efficiently using the Skeet framework. You can install it with the following command. +If npm is already installed, you can install it with the following command. + ```bash $ npm i -g @skeet-framework/cli $ npm install -g firebase-tools ``` +If npm is not installed, you can install it with the following command. +(This command installs nodenv, node, npm, @skeet-framework/cli and edits .profile/.zshrc.) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +$ npm install -g firebase-tools +``` + ### ② Create Skeet App ```bash diff --git a/articles/doc/ja/skeet-firestore/quickstart.md b/articles/doc/ja/skeet-firestore/quickstart.md index 17f52c5..e8ed097 100644 --- a/articles/doc/ja/skeet-firestore/quickstart.md +++ b/articles/doc/ja/skeet-firestore/quickstart.md @@ -9,11 +9,19 @@ Skeet フレームワークを使ってプロジェクトを迅速に開始す ## Skeet CLI のインストール Skeet CLI は Skeet フレームワークを効率的に利用するためのコマンドラインツールです。以下のコマンドでインストールできます。 +すでに npm がインストールされている場合は、以下のコマンドでインストールできます。 ```bash $ npm i -g @skeet-framework/cli ``` +npm がインストールされていない場合は、以下のコマンドでインストールできます。 +(このコマンドは、nodenv, node, npm, @skeet-framework/cli をインストールし .profile/.zshrc を編集します。) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +``` + ## Google Cloud Project の作成 Google Cloud Project を作成することで、Google Cloud の各種リソースを利用することができます。公式の Google Cloud ドキュメントを参照して、新しいプロジェクトを作成してください。 diff --git a/articles/doc/ja/skeet-firestore/setup.md b/articles/doc/ja/skeet-firestore/setup.md index 13d4cf1..b74dd27 100644 --- a/articles/doc/ja/skeet-firestore/setup.md +++ b/articles/doc/ja/skeet-firestore/setup.md @@ -37,11 +37,22 @@ Skeet Framework は SQL と NoSQL を組み合わせてアプリを構築でき ### ① パッケージのインストール +Skeet CLI は Skeet フレームワークを効率的に利用するためのコマンドラインツールです。以下のコマンドでインストールできます。 +すでに npm がインストールされている場合は、以下のコマンドでインストールできます。 + ```bash $ npm i -g @skeet-framework/cli $ npm install -g firebase-tools ``` +npm がインストールされていない場合は、以下のコマンドでインストールできます。 +(このコマンドは、nodenv, node, npm, @skeet-framework/cli をインストールし .profile/.zshrc を編集します。) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +$ npm install -g firebase-tools +``` + ### ② Skeet アプリの作成 ```bash diff --git a/articles/doc/ja/skeet-graphql/quickstart.md b/articles/doc/ja/skeet-graphql/quickstart.md index df3725b..d1719ae 100644 --- a/articles/doc/ja/skeet-graphql/quickstart.md +++ b/articles/doc/ja/skeet-graphql/quickstart.md @@ -11,11 +11,19 @@ Skeet フレームワークを使ってプロジェクトを迅速に開始す ## Skeet CLI のインストール Skeet CLI は Skeet フレームワークを効率的に利用するためのコマンドラインツールです。以下のコマンドでインストールできます。 +すでに npm がインストールされている場合は、以下のコマンドでインストールできます。 ```bash $ npm i -g @skeet-framework/cli ``` +npm がインストールされていない場合は、以下のコマンドでインストールできます。 +(このコマンドは、nodenv, node, npm, @skeet-framework/cli をインストールし .profile/.zshrc を編集します。) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +``` + ## Docker のインストール Skeet は、Docker を利用してローカルでの開発をサポートしています。 diff --git a/articles/doc/ja/skeet-graphql/setup.md b/articles/doc/ja/skeet-graphql/setup.md index daff794..0d16ab3 100644 --- a/articles/doc/ja/skeet-graphql/setup.md +++ b/articles/doc/ja/skeet-graphql/setup.md @@ -33,11 +33,22 @@ Skeet はオープンソースのフルスタックアプリ開発ソリュー ### ① パッケージのインストール +Skeet CLI は Skeet フレームワークを効率的に利用するためのコマンドラインツールです。以下のコマンドでインストールできます。 +すでに npm がインストールされている場合は、以下のコマンドでインストールできます。 + ```bash $ npm i -g @skeet-framework/cli $ npm install -g firebase-tools ``` +npm がインストールされていない場合は、以下のコマンドでインストールできます。 +(このコマンドは、nodenv, node, npm, @skeet-framework/cli をインストールし .profile/.zshrc を編集します。) + +```bash +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.0.0)" +$ npm install -g firebase-tools +``` + ### ② Skeet アプリの作成 ```bash