Fully automate dev setup with Gitpod
This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click.
This commit is contained in:
parent
631201c9c3
commit
e90fec71cb
|
@ -0,0 +1,7 @@
|
||||||
|
FROM gitpod/workspace-mongodb
|
||||||
|
|
||||||
|
# Install custom tools, runtimes, etc.
|
||||||
|
# For example "bastet", a command-line tetris clone:
|
||||||
|
# RUN brew install bastet
|
||||||
|
#
|
||||||
|
# More information: https://www.gitpod.io/docs/config-docker/
|
|
@ -0,0 +1,6 @@
|
||||||
|
image:
|
||||||
|
file: .gitpod.Dockerfile
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- init: npm install && npm run build
|
||||||
|
command: npm run start
|
Loading…
Reference in New Issue