An open API service indexing awesome lists of open source software.

https://github.com/argon-dev22/udemy.shima.github-actions

GitHub Actionsで学ぶCI/CD入門―ビルド・デプロイの基本からAPI自動テスト・AWSへの自動デプロイまで
https://github.com/argon-dev22/udemy.shima.github-actions

ci-cd github-actions

Last synced: about 1 year ago
JSON representation

GitHub Actionsで学ぶCI/CD入門―ビルド・デプロイの基本からAPI自動テスト・AWSへの自動デプロイまで

Awesome Lists containing this project

README

          

# サンプルアプリケーション

静的なフロントエンドと Web API から成る、足し算アプリケーションです。

## 開発モードでの起動手順

サンプルアプリケーションは、以下の手順で開発モードで起動します。

```console
cd backend/
npm ci
npm run dev
```

起動したら、ブラウザで http://localhost:8080 にアクセスしてください。

Cloud9 の場合は、「Tools」>「Preview」>「Preview Running Application」でプレビューを起動して、「Pop Out Into New Window」でブラウザの別タブでアクセスしてください。

## バックエンドをビルドして実行する手順

バックエンドをビルドして実行する場合は、以下のコマンドを実行してください。

```console
cd backend/
npm ci
npm run build
node dist/index.js
```

[![backend](https://github.com/argonicle/udemy_shima_github-actions/actions/workflows/backend.yml/badge.svg)](https://github.com/argonicle/udemy_shima_github-actions/actions/workflows/backend.yml)