Train Schedule App for Train Company Route Administrator
https://dvdkrstndnls.github.io/Train-Scheduler/
https://dvdkrstndnls.github.io/Portfolio/
Firebase, HTML, CSS, Bootstrap, Javascript, jQuery
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them
Your own Firebase credentials
After you fork the repo, you'll need to set up your own firebase account:
https://firebase.google.com/docs/web/setup
You'll want to replace my Firebase credentials (in main.js) with your own:
// Initialize Firebase
var config = {
apiKey: "YOURAPIKEYGOESHERE",
authDomain: "YOURDOMAIN.firebaseapp.com",
databaseURL: "https://YOURURL.firebaseio.com",
projectId: "YOUR-PROJECT-ID-12345",
storageBucket: "",
messagingSenderId: "71267407443"
};
firebase.initializeApp(config);
Since all the backend is handled by firebase you'll not need any other backend. Thus a simple deployment could just use GitHubPages