The code for MyTicketer https://t200.nextstoplabs.org
  • Vue 92.4%
  • JavaScript 7.2%
  • HTML 0.4%
Find a file
Kai 803fb06185 Add Railway deploy instructions and start cmd
Update README to replace the pm2 start example with a simple PORT=3000 npm run start command and add a Railway Deployment section showing install/build/start steps. Adjust package.json and vue.config.js to support the revised start/build flow, and update package-lock.json to include the new 'serve' dependency and related dependency/version changes.
2026-03-11 00:41:08 +00:00
.github/workflows Update node.js.yml 2025-03-17 15:51:19 +00:00
public Refactor login, API endpoints, routes & tickets 2026-03-10 21:57:10 +00:00
src Update button colors and styles across multiple components 2026-03-10 23:59:04 +00:00
.gitattributes Initial commit 2025-01-12 19:10:47 +00:00
.gitignore added driver login 2025-04-12 03:58:15 +01:00
babel.config.js The currect verision 2025-01-12 19:12:35 +00:00
jsconfig.json The currect verision 2025-01-12 19:12:35 +00:00
package-lock.json Add Railway deploy instructions and start cmd 2026-03-11 00:41:08 +00:00
package.json Add Railway deploy instructions and start cmd 2026-03-11 00:41:08 +00:00
README.md Add Railway deploy instructions and start cmd 2026-03-11 00:41:08 +00:00
todo.txt Disable messages button and persist route stops 2026-03-10 23:06:20 +00:00
vue.config.js Add Railway deploy instructions and start cmd 2026-03-11 00:41:08 +00:00

MBT_ETM-T200

The code for MBT ETM T200 code base This is the tickter style ETM

How to Run

Step 1: Clone the Repository

First, clone the repository to your local machine:

git clone https://github.com/Kai-codin/MBT-ETM-T200.git

Step 2: Navigate to the Project Directory

Change to the project directory:

cd MBT-ETM-T200

Step 3: Running Locally

To run the application locally, use the following command:

npm run serve

Step 4: Running in Production

To build and run the application in a production environment, follow these steps:

  1. Build the project:

    npm run build
    
  2. Start the production server:

    PORT=3000 npm run start
    

Railway Deployment

Railway can use the built-in scripts in package.json:

npm install
npm run build
npm run start

The start script serves the compiled dist directory on Railway's PORT environment variable.