diff --git a/.gitignore b/.gitignore
index 17fecf3..5c5b09e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-flickr.json
+.*.json
diff --git a/README.md b/README.md
index 25c6745..649d73d 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ Org and site data are in JSON-LD files in `site.json` and `org.json`. Each page
## Example `flickr.json`
-The required `flickr.json` file is not in the repository, because it contains and API key. It shoudl look like this:
+The required `.flickr.json` file is not in the repository, because it contains and API key. It should look like this:
```json
{
diff --git a/index.php b/index.php
index 2de93f9..8df19b8 100644
--- a/index.php
+++ b/index.php
@@ -28,7 +28,7 @@ function make_gallery() {
return True;
}
- $flickr = json_decode(file_get_contents('flickr.json'), TRUE);
+ $flickr = json_decode(file_get_contents('.flickr.json'), TRUE);
$flickr['method'] = "flickr.photosets.getPhotos";
$flickr['extras'] = "media,url_m,url_l";
$flickr['per_page'] = "500";
@@ -179,25 +179,24 @@ $site['mainEntity'] = &$meta;
?>