Node.JS web application for GPS tracking
 
 
 
 
Go to file
Keith Irwin 692f647143
Fixed margins, rearranged base.css
2017-04-28 03:24:03 -04:00
config Login not needed to view /help 2017-04-28 03:21:16 -04:00
static Fixed margins, rearranged base.css 2017-04-28 03:24:03 -04:00
views Login not needed to view /help 2017-04-28 03:21:16 -04:00
.gitignore Moved environment files to own folder 2017-04-26 23:13:14 -04:00
LICENSE.md Updated license 2017-04-12 14:40:56 -04:00
README.md Final readme updates 2017-04-26 23:55:26 -04:00
nodemon.json Minifies on first run too 2017-04-12 20:47:24 -04:00
package.json #32 Fixed social logins 2017-04-19 21:37:00 -04:00
server.js #52 Added server-side uniqueness checks 2017-04-27 16:44:49 -04:00
test.js Added tests to be made 2017-04-14 21:46:21 -04:00

README.md

[]Tracman

v 0.6.0

node.js application to display a sharable map with user's location.

Installation

$ git clone https://github.com/Tracman-org/Server.git && (cd Server && exec npm install)

You will need to set up a configuration file at config/env/env.js. Use config/env/sample.js for an example. You can get API keys at the google developer's console. You will need to set up approved hosts and auth callbacks. There is more information in their documentation.

A good method is to simply copy the sample configuration and point config/env/env.js to the new version:

$ cp config/env/sample.js config/env/my-config.js
$ echo "module.exports = require('./my-config.js');" > config/env/env.js

Then edit config/env/my-config.js to match your local environment.

Usage

Run Tracman with npm:

$ npm run minify && npm start

...or with nodemon:

$ npm run nodemon

Nodemon will automatically minify files and restart the app when you make changes. Check out the nodemon.json configuration.

Contributing

Tracman will be updated according to this branching model... more or less. If you know anything about programming Android, the Tracman android app is more desperate for help.

Changelog

v0.6.0

  • #32, #57, #58, #60 Added more login options
  • #50 Replaced some callbacks with promises
  • Minified static files
  • #51, #52 Added settings validations
  • #54, #55 Made map work better
  • #61 New MongoDB security
  • #62 Fixed error handling

v0.5.1

  • Fixed broken controls

v0.5.0

  • Updated libraries
  • Fixed recognition of attached clients #34
  • Moved socket.io code to own file.
  • Many minor fixes

v0.4.3

  • Fixed memory store #21

v0.4.2

  • Fixed Streetview covering buttons
  • Fixed error when viewing map of nonexistant user

v0.4.1

  • Users can view/change email address
  • Added linked accounts to admin

v0.4.0

  • Opened registration
  • Replaced 'Imperial' with 'Standard'
  • Bug fixes

v0.3.0

  • Unified map and dashboard UI
  • Security updates
  • New admin UI

License

see LICENSE.md

Tracman: GPS tracking service in node.js Copyright © 2017 Keith Irwin

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.