Skip to content

Bag Bot is a friendly bot that gives passengers updates on their luggage. Bag Bot will update you on the status of your bag: where to pick it up, where last scanned; and expected wait time for arrival. Choose to wait or have your bag delivered to you. Purchase discounted necessities with select vendors.

License

Notifications You must be signed in to change notification settings

darrendbutler/Vabranium-Team

Repository files navigation

Bag Bot

Description: Bag Bot is a friendly bot that gives passengers updates on their luggage. Bag Bot will update you on the status of your bag: where to pick it up, where last scanned; and expected wait time for arrival. Choose to wait or have your bag delivered to you. Purchase discounted necessities with select vendors. (edited)

#Development Enviorment Set up

This project requires the following tools:

  • Node.js - The JavaScript environment for server-side code.
  • NPM - A Node.js package manager used to install dependencies.
  • PostgreSQL - A relational database system.

To get started, install NPM and Postgres on your local computer if you don't have them already. A simple way for Mac OS X users to install Postgres is using Postgres.app. Here is a Windows guide for installing PostgresSQL.

Getting Started

Step 1. Clone the code into a fresh folder

$ git clone https://github.com/darrendbutler/Vabranium-Team.git
$ cd mlh-hackathon-nodejs-starter

Step 2. Install Dependencies.

Next, we need to install the project dependencies, which are listed in package.json.

$ npm install

Step 3: Create an app on GitHub

Head over to GitHub OAuth apps and create a new OAuth app. Name it what you like but you'll need to specify a callback URL, which should be something like:

https://localhost:5000/auth/callback/github

The default port for our app is 5000, but you may need to update this if your setup uses a different port or if you're hosting your app somewhere besides your local machine.

Step 4: Update environment variables and run the Server.

Create a new file named .env by duplicating .env.sample. Update the new file with the GitHub credentials. It should look similar to this:

# .env file
DATABASE_URL="[INSERT_DATABASE_URL]"
GITHUB_CLIENT_ID="[INSERT_CLIENT_ID]"
GITHUB_CLIENT_SECRET="[INSERT_CLIENT_SECRET]"

You replace the GitHub credentials here and update the database URL. Learn more about the required Environment Variables here.

Now we're ready to start our server which is as simple as:

$ npm start

Open http://localhost:5000 to view it in your browser.

The app will automatically reload if you make changes to the code. You will see the build errors and warnings in the console.

What's Included?

  • Express - A minimal web framework for Node.js web applications
  • Sequelize - A promise-based ORM for Node.js that supports PostgreSQL, MySQL, and SQLite.
  • Bootstrap 4 - An open source design system for HTML, CSS, and JS.
  • Handlebars - A popular templating language for building layouts.

About

Bag Bot is a friendly bot that gives passengers updates on their luggage. Bag Bot will update you on the status of your bag: where to pick it up, where last scanned; and expected wait time for arrival. Choose to wait or have your bag delivered to you. Purchase discounted necessities with select vendors.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published