# gitpod

最早的远程开发平台,配置较高,50 小时/月免费,添加 `gitpod` 配置文件 `.gitpod.yml`,内容如下:

```yaml
image:
  file: .gitpod.Dockerfile

tasks:

    - name: Install dependencies
        init: |
        npm install
    
    - name: Start server
        command: npm run dev
```