Altcha
This is an Altcha application ready for deployment on OpenShift.
altcha-app/
├── package.json # Project dependencies and scripts
├── server.js # Express server setup
├── public/ # Static files
│ ├── index.html # Main HTML page
│ ├── style.css # Styles
│ └── app.js # Client-side JavaScript
└── README.md # This file
- Install dependencies:
npm install- Start the development server:
npm run devThe application will be available at http://localhost:8080
This application is configured for deployment on OpenShift. Key features:
- Listens on port 8080 (OpenShift requirement)
- Has a health check endpoint at /api/health
- Static file serving configured
- CORS enabled
Follow the deployment guide in the _assets folder for detailed deployment instructions.