https://github.com/batako/vue-practice
https://github.com/batako/vue-practice
docker rails ruby typescript vue vuetify
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/batako/vue-practice
- Owner: batako
- Created: 2020-05-24T05:06:14.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T19:06:28.000Z (over 3 years ago)
- Last Synced: 2025-02-10T13:16:12.536Z (over 1 year ago)
- Topics: docker, rails, ruby, typescript, vue, vuetify
- Language: Ruby
- Homepage:
- Size: 3.13 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 48
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 環境構築
### 起動
```
$ docker-compose up -d
```
### サンプルデータ投入
```
$ docker-compose exec api rake db:seed
```
## 環境
API: http://localhost:3000
FRONT: http://localhost:8080
## テスト
### Unit
```
$ docker-compose exec front yarn test:unit
```
常時ファイル監視
```
$ docker-compose exec front yarn test:unit --watchAll
```
### E2E
```
$ docker-compose up e2e
```
`front\tests\e2e\screenshots` にテスト結果のスクリーンショットが保存される。
## フロントのビルド
出力先: /api/public
```
$ docker-compose exec front /build.sh
```