forked from BabylonJS/Babylon.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplify code contributions by fully automating the dev setup with gi…
…tpod.
- Loading branch information
1 parent
6cdd5a0
commit 09725b1
Showing
10 changed files
with
74 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM gitpod/workspace-full-vnc | ||
|
||
USER gitpod | ||
|
||
RUN sudo apt-get update && \ | ||
sudo apt-get install -yq chromium-browser firefox && \ | ||
sudo rm -rf /var/lib/apt/lists/* | ||
|
||
ENV CHROME_BIN=/usr/bin/chromium-browser | ||
ENV BROWSER="Chrome_Without_Sandbox" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
tasks: | ||
- command: gp await-port 1338 && sleep 3 && gp preview $(gp url 1338)/sandbox/index-local.html | ||
- before: > | ||
cd Tools/Gulp && | ||
npm i typescript [email protected] -g && | ||
npm install | ||
command: npm run start | ||
ports: | ||
- port: 1338 | ||
onOpen: ignore | ||
- port: 3000 | ||
onOpen: ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var env = process.env | ||
|
||
module.exports = { | ||
browsers: env.BROWSER ? env.BROWSER.split(',') : ['ChromeHeadless'], | ||
customLaunchers: { | ||
Chrome_Without_Sandbox: { | ||
base: 'Chrome', | ||
flags: ['--no-sandbox', '--disable-setuid-sandbox'], | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters