An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

TypeScript + Vite

Screenshot 2025-07-18 at 6 56 23 PM# React + TypeScript + Vite

Tickets are rendering

==
on Docker this image is running-
Screenshot 2025-07-21 at 5 01 25 AM

## 🚀 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
Screenshot 2025-07-18 at 6 56 23 PM# React + TypeScript + Vite
=======