gitpod setup: make the description precise + remove the build task to make the server startup fast. (#161)

* gitpod-setup make the description precise.

* remove the build task to make the server start fast.
pull/162/head
Nisar Hassan Naqvi 5 years ago committed by GitHub
parent 56b5599df0
commit dbb7ec5b90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,7 @@
tasks:
- command: gp await-port 3000 && gp preview $(gp url 3000)/tech-interview-handbook/
- init: cd website/ && yarn install && yarn build
- before: cd website/
init: yarn install
command: yarn start
ports:
- port: 3000

@ -70,9 +70,15 @@ If you are interested in how data structures are implemented, check out [Lago](h
There are no formal contributing guidelines at the moment as things are still in flux and we might find a better approach to structure content as we go along. You are welcome to contribute whatever you think will be helpful to fellow engineers. If you would like to contribute content for different domains, feel free to create an issue or submit a pull request and we can discuss further.
### Contribute online with a single click
### Online one-click setup for contributing
You can use Gitpod (A free online VS Code like IDE) for contributing online. With a single click in it will launch a ready to code workspace with all the dependencies being pre-installed & the build & start scripts for the website in process so that you can start coding straight away.
You can use Gitpod (A free online VS Code-like IDE) for contributing online. With a single click it will launch a workspace and automatically:
- clone the tech-interview-handbook repo.
- install the dependencies.
- run `yarn start`.
So that you can start straight away.
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/yangshun/tech-interview-handbook)

Loading…
Cancel
Save