https://github.com/anand3125/support-ticket-app
Smart Ticket App (Frontend) is a responsive React + TypeScript ticket management interface that allows users to view, create, filter, and paginate support tickets.
https://github.com/anand3125/support-ticket-app
mui-material react reacthooks responsive-design stompjs typescript websocket yup
Last synced: about 9 hours ago
JSON representation
Smart Ticket App (Frontend) is a responsive React + TypeScript ticket management interface that allows users to view, create, filter, and paginate support tickets.
- Host: GitHub
- URL: https://github.com/anand3125/support-ticket-app
- Owner: Anand3125
- Created: 2025-07-18T08:10:04.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-01T07:09:55.000Z (11 months ago)
- Last Synced: 2025-08-19T17:54:40.530Z (10 months ago)
- Topics: mui-material, react, reacthooks, responsive-design, stompjs, typescript, websocket, yup
- Language: TypeScript
- Homepage: https://support-ticket-webapp-livelink.netlify.app/
- Size: 209 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TypeScript + Vite
# React + TypeScript + Vite
Tickets are rendering
==
on Docker this image is running-

## 🚀 Running with Docker
### 1. Build the Docker image
```bash
docker build -t support-ticket-app .
```
### 2. Run the Docker container (default: port 8080)
```bash
docker run -p 8080:80 support-ticket-app
```
- The app will be available at: [http://localhost:8080](http://localhost:8080)
- Example: [http://localhost:8080/login](http://localhost:8080/login)
### 3. Change the exposed port (optional)
If you want to use a different port (e.g., 3000), change the first number in the `-p` flag:
```bash
docker run -p 3000:80 support-ticket-app
```
- The app will now be available at: [http://localhost:3000](http://localhost:3000)
### 4. Stopping the container
Press `Ctrl+C` in the terminal where the container is running, or use:
```bash
docker ps # find your container ID
# then
docker stop
```
---
For more details, see the Dockerfile and nginx.conf in the project root.
<<<<<<< HEAD
# React + TypeScript + Vite
=======