Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added NPM to project, moved JS logic from HTML pages to external JS files #57

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/node_modules
/dist
npm-debug.log
.DS_Store
*.sublime-*

# Local Netlify folder
.netlify
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ Tool to combind and publish redacted time/location data files. Intended for use
NOTE: The app requires a Google Maps Javascript API key to work fully
<img src="examples/Publishing_Tool_screenshot.png">


## Running Locally / Local Development

To run the the Safe-Places Web tool locally for development:

* From the root directory of the project, run `npm install` to install any project dependencies.
* Run `npm start` to start a simple server to serve the pages.

Open up your preferred browser and view the app at [http://localhost:8009](http://localhost:8009/ "http://localhost:8009")

## Running in a Docker container

To be able to run the the Safe-Places Web tool in a container follow the following steps.
Expand Down
Loading