# gitpod

Gitpod是最早的远程开发平台,配置较高,50 小时/月免费,很容易用完。添加配置文件 `.gitpod.yml` 和 `.gitpod.Dockerfile`,内容如下:

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

tasks:

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