fix(tools): fix and accelerate automated gitpod dev setup (#36720)

* fix(tools): switch to official gitpod mongodb image
* fix(tools): accelerate gitpod start-up by prebuilding the client
* fix(tools): accelerate gitpod start-up by continuously prebuilding workspaces
* fix(tools): add setup|automated badge with new fork-compatible gitpod url
This commit is contained in:
Jan Keromnes
2019-08-30 11:42:13 +02:00
committed by mrugesh
parent 879899f610
commit e9d753fc09
3 changed files with 30 additions and 12 deletions

8
.gitpod.Dockerfile vendored
View File

@ -1,8 +0,0 @@
FROM gitpod/workspace-full
USER gitpod
WORKDIR $HOME
RUN wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.6.13.tgz && \
mkdir -p mongodb && \
tar xaf mongodb-linux-x86_64-ubuntu1604-3.6.13.tgz -C mongodb --strip-components=1

View File

@ -1,5 +1,4 @@
image:
file: .gitpod.Dockerfile
image: gitpod/workspace-mongodb
ports:
- port: 27017 # mongodb
onOpen: ignore
@ -17,7 +16,7 @@ tasks:
# starting mongo in background, so it doesn't block prebuilds
before: >
mkdir -p /workspace/data &&
(~/mongodb/bin/mongod --dbpath /workspace/data &)
(mongod --dbpath /workspace/data &)
- name: server
before: export COOKIE_DOMAIN=gitpod.io && export HOME_LOCATION=$(gp url 8000) && export API_LOCATION=$(gp url 3000)
@ -26,9 +25,10 @@ tasks:
init: >
cp sample.env .env &&
npm ci &&
gp sync-done npm-ci &&
gp await-port 27017 &&
npm run seed &&
~/mongodb/bin/mongo --eval "db.fsyncLock(); db.fsyncUnlock()"
mongo --eval "db.fsyncLock(); db.fsyncUnlock()"
command: >
npm run ensure-env &&
gp await-port 27017 &&
@ -36,8 +36,33 @@ tasks:
- name: client
before: export HOME_LOCATION=$(gp url 8000) && export API_LOCATION=$(gp url 3000)
init: >
cd ./client &&
gp sync-await npm-ci &&
npm run prebuild &&
npm run build:workers &&
cd ..
command: >
gp await-port 3000 &&
cd ./client &&
npm run develop -- -H '0.0.0.0'
openMode: split-right
github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true
# add a check to pull requests (defaults to true)
addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: true
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
addBadge: false
# add a label once the prebuild is ready to pull requests (defaults to false)
addLabel: false

View File

@ -3,6 +3,7 @@
[![Pull Requests Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)
[![first-timers-only Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](http://www.firsttimersonly.com/)
[![Open Source Helpers](https://www.codetriage.com/freecodecamp/freecodecamp/badges/users.svg)](https://www.codetriage.com/freecodecamp/freecodecamp)
[![Setup Automated](https://img.shields.io/badge/setup-automated-blue?logo=gitpod)](https://gitpod.io/from-referrer/)
## Welcome to freeCodeCamp.org's open source codebase and curriculum!