@@ -17,9 +17,10 @@ Latest version has a button to quickly add events to your calendar of choice
1717 cp .env.example .env
1818 ```
1919
20- 2 . Add your Apify API token to ` .env ` :
20+ 2 . Add your Apify API token and Google Maps API key to ` .env ` :
2121 ```
2222 APIFY_TOKEN=your_actual_apify_token_here
23+ GOOGLE_TOKEN=your_actual_google_maps_api_key_here
2324 ```
2425
25263 . Open ` index.html ` in your browser directly, or use a local server:
@@ -33,15 +34,16 @@ Latest version has a button to quickly add events to your calendar of choice
3334
3435The site automatically deploys to GitHub Pages when you push to the ` gh-pages ` branch.
3536
36- ** Required GitHub Secret :**
37+ ** Required GitHub Secrets :**
3738
38- You need to add your Apify API token as a GitHub secret :
39+ You need to add your Apify API token and Google Maps API key as GitHub secrets :
3940
40411 . Go to your repository on GitHub
41422 . Navigate to ** Settings** → ** Secrets and variables** → ** Actions**
42433 . Click ** New repository secret**
43- 4 . Name: ` APIFY_TOKEN `
44- 5 . Value: Your Apify API token
45- 6 . Click ** Add secret**
44+ 4 . Add the following secrets:
45+ - Name: ` APIFY_TOKEN ` , Value: Your Apify API token
46+ - Name: ` GOOGLE_TOKEN ` , Value: Your Google Maps API key
47+ 5 . Click ** Add secret** for each
4648
47- The GitHub Actions workflow will automatically inject this token into the JavaScript file at build time.
49+ The GitHub Actions workflow will automatically inject these tokens into the JavaScript files at build time.
0 commit comments