Skip to content

A React js app to log miles travelled in MC Cars

Notifications You must be signed in to change notification settings

gazaskygeeks/KamSafer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KamSafer

KamSafer is a web app that enables you to log your trip's information. The purpose, total kilometers travelled by your vehicle, and notes to include your destination.

Breif summary of key requierments/features

  • Create logs that enables you to log your trip's information using modern technologies:React.js.
  • Allows the users used app to download his logs in excel version.

Features

Main functionality

  • Can log in using the general user and password of the Mercy Corps organization
  • Select the car I’ll be using
  • Confirm your trips and keep track of my kilometers travelled
  • Show the report of all logged trips
  • View trips by date
  • Download an excel version of my reports
  • Leave the account

Key Technologies

Architecture

Code structure

  • The client folder contains the front end code
  • The src folder contains the backend and DB code
  • The editor begins at client/components/login/index.js
  • config.js contains the dummy data for the app
  • The entry point is an app.js file which manages all components, get and send data to the src/app.js file which contains all app endpoints

User Guide

Development Setup

tech

  • node 8 & npm>5
  • postgres

Steps

  1. run git clone of this repo and cd into the folder
  2. Provision a postgres database (either locally or remotely)
  3. In the root directory create a .env file
    1. Add the following database environment variables, taking the values from the database you set up in the previous step: DB_DIALECT, DB_HOST, DB_NAME,DB_PASSWORD, DB_USER
    2. A jwt secret variable, named SECRET
    3. User log in variables, USERNAME and HASHED. To generate the hash run node lib/hasher [plaintext password] and copy the printed value.
  4. commands (from root):
    • npm i install server dependencies
    • npm start run production server
    • npm run dev run dev server using nodemon
    • cd client && npm i install react app dependencies
    • cd client && npm start run dev-server react app
    • cd client && npm build build react app
  5. The server will run on PORT=4000 while the dev react app will run at PORT=3000
  6. To initialise some cars in your database you need to run the db_build.js file in src/database/config/
    1. Edit the file to change the carsArray data if you want to.
    2. When you are happy with it, run the file using node [path to file] NOTE This will wipe the database completely. Do not attempt to run to edit anything in a production base. The file should abort if DB_HOST is not localhost anyway but you should not even think about running this file if you have production database credentials in your .env.

Demo

https://kamsafer.herokuapp.com/

How to use KamSafer website

  • you should have a general username and password related to Mercy Core employees to login
  • select the car model you want to use
  • click add trip button to add trip, then add information about your trip
  • click show report button to see all trips related to this car model
  • click on Download report to get a excel version
  • click logout to leave account

Team Member

  • Sama Amro
  • Shaima Ihdoosh
  • Orjwan Rajaby

About

A React js app to log miles travelled in MC Cars

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.2%
  • Other 0.8%