/HotelSystem

酒店后台管理和前台预订系统

Primary LanguageVue

酒店前台预订和后台管理系统

项目demo访问地址:

项目部分效果展示

  • 登陆页面:

  • 前台主页:

  • 后台客房管理:

Docker 自动部署:

确保目标部署服务器已安装 Docker 和 Docker Compose。
  • 安装 Docker
$ sudo apt update
$ sudo apt install -y docker.io
$ sudo systemctl start docker
$  sudo systemctl enable docker
  • 安装 Docker Compose
$ sudo apt install -y docker-compose
下载源码
$ git clone git@github.com:02lb/HotelSystem.git
$ cd HotelSystem
配置环境变量
  • 在项目根目录下创建 .env 文件,根据需要设置环境变量。
MYSQL_ROOT_PASSWORD=libo8657
DB_NAME=python_hotel
DB_USER=hotel_admin
DB_PASSWORD=hotel0601
构建和启动容器进行部署
$ docker-compose up -d --build