Skip to content

Share your memories and conquer new places with your team

Notifications You must be signed in to change notification settings

OdysseyApp/OdysseyCordova

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Server Settings

Install nodemon

npm install -g nodemon
On mac or linux
sudo npm install -g nodemon

Install node-gyp

npm install node-gyp -g

Create db.js file in server/

const mysql = require("mysql");

const connection = mysql.createConnection({
  host: "YOUR_HOST",
  user: "YOUR_DB_USER",
  password: "YOUR_PASSWORD",
  database: "YOUR_DB"
});

exports.connection = connection;

Running The Server

  • cd server
  • yarn install
  • yarn start

About

Share your memories and conquer new places with your team

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published