we need to configure some environment variables to let our build know some things about our project.
```bash
cp .env.gcloud-example .env
```
edit our newly created `.env` file and give it values that are appropriate to our gcloud account, for example:
```
PROJECT_NAME="my-very-own-dev-lab"
EMAIL="your.email@mailsomewhere.com"
APP_DOMAIN_NAME="atestdr.yourdomain.com"
```
where each of these variables represent:
* your project name, often called the project id in gcloud
* your email that you wish to be identified with for DNS and TLS encryption
* the domain name you want to use for this project when it is on line
Activate these in the current shell with:
```bash
source .env
```
Before we go any further, we need to confirm we have our gcloud environment ready and configured:
```bash
gcloud compute instances list --project="$PROJECT_NAME" \
&& gcloud compute disks list --project="$PROJECT_NAME" \
&& gcloud compute firewall-rules list --project="$PROJECT_NAME" \
&& gcloud storage buckets list --project="$PROJECT_NAME"
```
We should see pretty much an empty list but for default rules assigned for us by Google to our project to accept SSH, RDP and ICMP traffic - 4 lines in all.