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への自動デプロイまで
- Host: GitHub
- URL: https://github.com/argon-dev22/udemy.shima.github-actions
- Owner: argon-dev22
- Created: 2024-10-22T04:49:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-21T23:02:38.000Z (about 1 year ago)
- Last Synced: 2025-06-22T00:17:59.996Z (about 1 year ago)
- Topics: ci-cd, github-actions
- Language: TypeScript
- Homepage: https://www.udemy.com/course/cicd-with-github-actions/
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```
[](https://github.com/argonicle/udemy_shima_github-actions/actions/workflows/backend.yml)