-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitpod.yml
More file actions
16 lines (15 loc) · 1.03 KB
/
.gitpod.yml
File metadata and controls
16 lines (15 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Specify default docker image
image:
file: gitpod/gitpod.Dockerfile
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
tasks:
- init: |
# Clear the terminal from output above
clear
printf '\033[31m\033[1mWARNING:\033[0m %s\n' "This is affected by a bug https://github.com/gitpod-io/gitpod/issues/1528, please ignore the blank preview and open the generated website in a browser"
printf '\n%s\n' "Press any key to continue.."
read -r something
# HOTFIX: '-no-localhost' is a hotfix for bug https://github.com/gitpod-io/gitpod/issues/1528
firebase login --no-localhost
printf '\033[0;34m\033[1mINFO:\033[0m %s\n' "You can now export variable FIREBASE_TOKEN to avoid parsing 'firebase subcommand --token YOUR_TOKEN' for each usage of firebase"
printf '\033[0;34m\033[1mINFO:\033[0m %s\n' "The export of FIREBASE_TOKEN variable can be done account-wide and specified per repository on https://gitpod.io/settings/"