remove npm packages from the Preqreuisites section of the readme because they should get automatically installed in step 1 of the setup
2.9 KiB
Irish Rail Tracker
Setup
Local Emulation
Prerequisites
- Java 11 or greater
npm
Setup
- Run
npm install
in the root directory of the project (traintracker/
). Note that this may require root privileges on certain operating systems (i.e., to be ran withsudo
). - Run
npm install
in thetraintracker/functions/
directory. - Start the Firebase emulator, which is needed to emulate the Firebase functions locally. Note that the Firebase emulator will occupy the focus of your terminal while it is running, so you will either need to keep it in its own dedicated terminal window or fork it into the background by appending
&
to the following command:
firebase emulators:start
- Wait until the until the emulator says that it is ready before starting the web app using the following command:
npm run dev
- A
localhost
or127.0.0
link will appear in your terminal, navigatee to this link in a web browser to view & interact with the web app.
Shutdown
- To kill the
npm
process (the webapp itself) you can simply send an interrupt signal by hittingCTRL + C
in terminal in which it is running. - To kill the Firebase emulator process, you can again just simply send an interrupt signal by hitting
CTRL + C
in the terminal in which it is running in the foreground. Note that if you have forked the process to the background in a terminal, you will have to run the commandfg
to bring it to the foreground before hittingCTRL + C
to kill the process.
Testing
Vue.js Unit Tests
There are a series of Vue.js unit tests which are automatically ran with Github Actions when a pull request is made or when a branch is merged into main
. Optionally, they can be ran locally via the following command:
npm run test:unit
Firebase Integration Tests
There are also a series of Firebase integration tests which are automatically ran with Github Actions when a pull request is made or when a branch is merged into main
. Optionally, they can be ran locally via the following command in the traintacker/functions/
directory:
cd functions && npm run test
Manual Firebase Deployment
The webapp is automatically deployed to Firebase via Github Actions automatically when a branch is merged into main
, provided that it successfully passed the Vue.js unit & Firebase integration tests. It can also be manually deployed with the following command ran in the traintracker/
directory, but this is not to be done without explicit approval of each of the project owners. You will need the appropriate Firebase authentication tokens to do this.
npm run build && firebase deploy
Links
Deployed Site: irishrailtracker.web.app
Jira: trainenthusiasts.atlassian.net
GitHub: github.com/0hAodha/traintracker