├── .babelrc ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── app.json ├── client ├── components │ ├── LoginForm.js │ └── Logo.js ├── images │ ├── logo-color.png │ ├── logo.png │ ├── logo1.png │ └── logo3.png └── pages │ ├── Login.js │ ├── Map.js │ ├── Navbar.js │ ├── Profile.js │ └── Signup.js ├── package.json └── server ├── db ├── db.js ├── index.js └── models │ ├── index.js │ └── user.js ├── index.js └── socket └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/App.test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/app.json -------------------------------------------------------------------------------- /client/components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/components/LoginForm.js -------------------------------------------------------------------------------- /client/components/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/components/Logo.js -------------------------------------------------------------------------------- /client/images/logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/images/logo-color.png -------------------------------------------------------------------------------- /client/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/images/logo.png -------------------------------------------------------------------------------- /client/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/images/logo1.png -------------------------------------------------------------------------------- /client/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/images/logo3.png -------------------------------------------------------------------------------- /client/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/pages/Login.js -------------------------------------------------------------------------------- /client/pages/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/pages/Map.js -------------------------------------------------------------------------------- /client/pages/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/pages/Navbar.js -------------------------------------------------------------------------------- /client/pages/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/pages/Profile.js -------------------------------------------------------------------------------- /client/pages/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/client/pages/Signup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/package.json -------------------------------------------------------------------------------- /server/db/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/server/db/db.js -------------------------------------------------------------------------------- /server/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/server/db/index.js -------------------------------------------------------------------------------- /server/db/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/server/db/models/index.js -------------------------------------------------------------------------------- /server/db/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/server/db/models/user.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/server/index.js -------------------------------------------------------------------------------- /server/socket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joycecyoj/ShareLocation/HEAD/server/socket/index.js --------------------------------------------------------------------------------