├── windows.bat ├── config ├── plugin │ └── webman │ │ ├── cors │ │ ├── app.php │ │ └── middleware.php │ │ ├── gateway-worker │ │ ├── app.php │ │ └── process.php │ │ ├── log │ │ ├── app.php │ │ └── middleware.php │ │ └── console │ │ └── app.php ├── dependence.php ├── container.php ├── exception.php ├── middleware.php ├── bootstrap.php ├── autoload.php ├── static.php ├── view.php ├── translation.php ├── redis.php ├── cache.php ├── app.php ├── server.php ├── log.php ├── process.php ├── route.php ├── database.php └── session.php ├── public ├── favicon.ico ├── 404.html └── asset │ └── toastr │ └── 2.1.3 │ ├── toastr.min.js │ └── toastr.min.css ├── support ├── helpers.php ├── Request.php ├── Response.php └── bootstrap.php ├── .env.example ├── .gitignore ├── start.php ├── app ├── controller │ ├── IndexController.php │ ├── WindowController.php │ └── QueueController.php ├── view │ ├── index │ │ └── view.html │ ├── queue │ │ ├── status.html │ │ ├── take.html │ │ ├── display.html │ │ └── admin.html │ └── window │ │ └── index.html ├── model │ ├── Test.php │ ├── Window.php │ └── QueueNumber.php ├── common │ └── LogFormatter.php ├── middleware │ ├── QueueRateLimit.php │ └── StaticFile.php ├── bootstrap │ └── MemRepor.php └── functions.php ├── LICENSE ├── composer.json ├── webman ├── sql └── queue.sql ├── README.md ├── windows.php ├── plugin └── webman │ └── gateway │ └── Events.php └── process └── Monitor.php /windows.bat: -------------------------------------------------------------------------------- 1 | CHCP 65001 2 | php windows.php 3 | pause -------------------------------------------------------------------------------- /config/plugin/webman/cors/app.php: -------------------------------------------------------------------------------- 1 | true, 4 | ]; -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitter1105/queue/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /config/plugin/webman/gateway-worker/app.php: -------------------------------------------------------------------------------- 1 | true, 4 | ]; -------------------------------------------------------------------------------- /support/helpers.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |