Skip to content

DarinDev1000/halfway-backend

Repository files navigation

Halfway Mapping Project

The node server code for Halfway Mapping Project.

  • This program should calculate a driving route for 2 users if they want to meet in the middle.

This program is still in development.

This is no longer hosted on a domain.

How to use

Requirements:

  • Node.js and npm Installed
  • 1 MariaDB/MySQL Database
  • This repository downloaded

Steps

  1. Install Node.js version 10.x LTS (this also installs npm)

  2. Check that node and npm are installed

    • node -v
    • npm -v
  3. Download this project

  4. Setup a database: MariaDB/MySQL

  5. You may want a database browser to view and edit databases

  6. Or edit the database from the command line

    • sudo mysql -p or mysql -u root -p
    • Optional (add user)
      • To add a user, in mysql, run:
      • GRANT ALL PRIVILEGES ON *.* TO '<username>'@'localhost' IDENTIFIED BY '<password>';
  7. Create a database in your database server

    • Add tables and columns to each database
  8. In the root project directory, rename the "sample.env" file to ".env"

    • cp sample.env .env
  9. Edit the ".env" file. Fill in the information for database.

    • Use root and database password or the username and password you created.
  10. In the root project directory, run:

    • sudo npm install npm@latest -g
    • npm install
  11. This should complete the setup. Now run the server.

    • In the root project directory, run: node app.js
    • Or run: npm run dev-all to auto restart when a file is saved
    • This will start the server on http://localhost:3000

About

The node server code for Halfway Mapping Project

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published