Node.JS web application for GPS tracking
 
 
 
 
Go to file
Keith Irwin 67a8ba1852
Finally moved style-loader and css-loader from devdeps to deps
2017-07-14 04:12:12 -04:00
config Added better debugging 2017-07-14 03:45:43 -04:00
static Removed extraneous logging 2017-07-11 03:54:53 -04:00
views Added email to password reset form automatically 2017-07-14 03:24:58 -04:00
.gitignore Moved webpacked files 2017-06-30 15:03:43 -04:00
CHANGELOG.md Bumped version and concacted changelog on README 2017-07-14 03:51:42 -04:00
LICENSE.md Updated license 2017-04-12 14:40:56 -04:00
README.md Bumped version and concacted changelog on README 2017-07-14 03:51:42 -04:00
nodemon.json #100 Webpacked CSS 2017-06-30 16:38:30 -04:00
package-lock.json Finally moved style-loader and css-loader from devdeps to deps 2017-07-14 04:12:12 -04:00
package.json Finally moved style-loader and css-loader from devdeps to deps 2017-07-14 04:12:12 -04:00
server.js Moved email validation function to middleware file 2017-07-04 12:09:28 -04:00
test.js Added tests to be made 2017-04-14 21:46:21 -04:00
webpack.config.js #100 Webpacked CSS 2017-06-30 16:38:30 -04:00

README.md

[]Tracman

v 0.7.2

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

Installation

On unix-based systems:

git clone https://github.com/Tracman-org/Server.git &&\
mv Server tracman-server && cd tracman-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/local-config.js
echo "module.exports = require('./local-config.js');" > config/env/env.js

Then edit config/env/local-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

view full changelog

v0.7.2

  • Added more debugging to fix auth problems

v0.7.0

  • More bug fixes

v0.6.0-7

  • Removed demo recording code
  • Moved email server settings to env file
  • Added SMTP check
  • Minified static files
  • Fixed error when creating user
  • Removed extraneous packages
  • Fixed #87, #96, #92, #84, #76, #77, #32, #57, #58, #60, #50, #51, #52, #54, #55, #61, #62

License

view full license

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/.