Skip to content

Commit

Permalink
Add local development instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
kylmp committed Aug 1, 2022
1 parent 6f48cba commit 42cc12d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ mockup.drawio
demo.gif
.env.template
config.properties
config.template.properties
build/
photo-metadata-updater/
photo-metadata-updater.zip
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ In order to take advantage of timezone and map features, you need a [Bing maps A
4. Double click the `photo-metadata-updater` file, you will see a console window open
5. In a browser, navigate to http://localhost:8000

If you want to contribute, instructions for local setup for development is in the [wiki](https://github.com/kylmp/photo-metadata-updater/wiki/Local-Setup-(Development))

# Using the App

### Usage
Expand Down Expand Up @@ -71,3 +73,4 @@ This application writes to the following EXIF metadata fields:
* [Bing Maps](https://docs.microsoft.com/en-us/bingmaps/v8-web-control/creating-and-hosting-map-controls/) - Map view and timezones API
* [Axios](https://axios-http.com/docs/intro) - HTTP Client
* [Express.js](https://expressjs.com/) - Web framework for Node apps
* [pkg](https://github.com/vercel/pkg) - Enables packaging node apps into executables
2 changes: 2 additions & 0 deletions config.template.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
EXIFTOOL_PATH=exiftool
BING_API_KEY=YOUR_BING_API_KEY
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"start": "node photo-metadata-updater",
"build-ui": "npm run --prefix ./src/frontend build",
"install-ui": "npm --prefix ./src/frontend install ./src/frontend",
"start-ui": "npm --prefix ./src/frontend start",
"build": "npm i && npm --prefix ./src/frontend install ./src/frontend && npm run --prefix ./src/frontend build && cp .env.template .env"
"serve-ui": "npm run --prefix ./src/frontend serve"
},
"author": "Kyle Rump",
"license": "ISC",
Expand Down

0 comments on commit 42cc12d

Please sign in to comment.