Skip to content

Commit c1ce9b2

Browse files
authored
* added gitpod configuration * updated Readme * updated gitpod readme
1 parent 92e9f8a commit c1ce9b2

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

.gitpod.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
tasks:
2+
- init: npm install && npm run dev
3+
vscode:
4+
extensions:
5+
- octref.vetur
6+
- ecmel.vscode-html-css
7+
- dbaeumer.vscode-eslint
8+
ports:
9+
- port: 8080
10+
name: Dev Web Preview
11+
description: Development Preview or robotframework.org
12+
onOpen: notify
13+
visibility: public

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,26 @@ When you want to contribute and open a pull request, only commit source file cha
4343
```
4444

4545
The page is built with [Vue CLI](https://cli.vuejs.org/).
46+
47+
## Use GitPod.io
48+
49+
With Gitpod you get a free "pop up" dev environment.
50+
Just register at gitpod with your github account and create a new workspace from your fork.
51+
52+
Steps to do:
53+
- Fork this page to your own Github account
54+
- Register at Gitpod.io with your github account
55+
- Create a new workspace with the url to your fork.
56+
57+
Gitpod will now automatically set up a full development environment with a running development server
58+
and a full functioning VSCode.
59+
60+
After the startup of the development web server in your Terminal, you can open the page preview.
61+
62+
To open the preview of the robotframework.org page, which you are developing, you can just follow the link in the terminal
63+
of the started VSCode.
64+
Just click on `http://localhost:8080/` with the modifier CTRL (Windows & Linux) or CMD (Mac).
65+
66+
Once you are done with your changes you can commit your modifications to your fork and
67+
create a pull-request to the original repository.
68+

vue.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ const PreloadWebpackPlugin = require('@vue/preload-webpack-plugin')
44

55
module.exports = {
66
productionSourceMap: false,
7+
devServer: {
8+
disableHostCheck: true
9+
},
710
configureWebpack: {
811
resolve: {
912
alias: {

0 commit comments

Comments
 (0)