forked from exploratortech/CodingTest-RoR-Typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
27 lines (24 loc) · 647 Bytes
/
.gitpod.yml
File metadata and controls
27 lines (24 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.
image:
file: .gitpod.Dockerfile
ports:
# Rails server
- port: 3000
onOpen: open-preview
# PostgreSQL server
- port: 5432
onOpen: ignore
tasks:
- init: >
bundle install &&
yarn install &&
rake db:create &&
rake db:migrate
command: yarn start
vscode:
extensions:
- esbenp.prettier-vscode
- streetsidesoftware.code-spell-checker
- mbessey.vscode-rufo