commit 6c2be3927cd16c58945c4e9fa1215c3436e8efb5 Author: gz Date: Fri May 29 09:40:08 2026 +0800 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/app.py b/app.py new file mode 100644 index 0000000..45f9d48 --- /dev/null +++ b/app.py @@ -0,0 +1,24 @@ +import http.server +import socketserver +import webbrowser +import os + +PORT = 8205 +ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) + +# 设定当前目录为服务器根目录 +os.chdir(ROOT_DIR) + +class Handler(http.server.SimpleHTTPRequestHandler): + def log_message(self, format, *args): + pass # 屏蔽日志输出(可选) + +# 启动 HTTP 服务 +def start_server(): + with socketserver.TCPServer(("", PORT), Handler) as httpd: + print(f"访问地址:http://localhost:{PORT}/index.html") + webbrowser.open(f"http://localhost:{PORT}/index.html") + httpd.serve_forever() + +if __name__ == "__main__": + start_server() diff --git a/index.html b/index.html new file mode 100644 index 0000000..a5196ad --- /dev/null +++ b/index.html @@ -0,0 +1,203 @@ + + + + + 坤记烧烤 + + + + + + + + + + +
+
+

关于我们

+

Enterprise Culture

+
+ +
+

企业使命

+

让更多人吃到地道的东北烧烤,把烟火气带进每一位食客的生活中。我们坚信,一顿好烧烤,能温暖一个城市的夜晚。

+

Mission: To bring authentic Northeastern BBQ to more people and infuse every meal with the warmth of real-life flavor. We believe that a good barbecue can light up a city's night.

+
+ +
+

企业愿景

+

打造南京最具人情味、口碑最好的东北烧烤品牌,让“撸串”成为生活中最治愈的仪式。

+

Vision: To become the most beloved Northeastern BBQ brand in Nanjing, where “skewer nights” are the most healing rituals in everyday life.

+
+ +
+

企业价值观

+
    +
  • 地道口味:不将就,每一串都遵循东北老手艺,碳香入骨。
  • +
  • Authentic Taste: No compromises—each skewer follows traditional craftsmanship, rich with charcoal aroma.
  • + +
  • 热情待客:顾客是朋友,我们坚持烟火人情、真心服务。
  • +
  • Warm Hospitality: Customers are friends. We serve with heart and a sense of street warmth.
  • + +
  • 团队协作:撸串不仅靠炭火,更靠一群热血的人共同撑起。
  • +
  • Team Spirit: It's not just the fire—it’s the passion of a team that makes great barbecue.
  • + +
  • 不断创新:在传承中敢于变化,推陈出新是我们的日常。
  • +
  • Innovation: We dare to evolve while honoring tradition—creativity is our norm.
  • +
+
+ +
+

团队风采

+

我们是一群来自五湖四海、爱吃也爱做烧烤的人,最擅长把一场简单的团建,烤成一桌热辣的东北味儿!

+

Our Team: We’re a group of BBQ-loving folks from all over China. Give us a team-building event, and we’ll turn it into a sizzling feast of Northeastern flavors!

+ +
+ +
+

视频介绍

+

我们故事的开始,就是一把炭火的温度。

+

Video Intro: Our story began with the warmth of glowing charcoal.

+ +
+ +
+

门店地址

+

📍江苏省南京市鼓楼区 ×× 路 ×× 号
营业时间:17:00 - 凌晨 2:00
欢迎朋友们来坐坐,一起撸串、喝酒、唠嗑!

+

Location: ×× Road, Gulou District, Nanjing, Jiangsu Province
Hours: 5:00 PM – 2:00 AM
Come hang out, enjoy some skewers, a drink, and good conversations!

+
+ +
+ © 2025 坤记烧烤有限公司 · 企业文化展示页 +
+
+ + + + \ No newline at end of file diff --git a/static/intro.mp4 b/static/intro.mp4 new file mode 100644 index 0000000..fa87386 Binary files /dev/null and b/static/intro.mp4 differ diff --git a/static/team1.jpg b/static/team1.jpg new file mode 100755 index 0000000..d230fbc Binary files /dev/null and b/static/team1.jpg differ diff --git a/static/team2.jpg b/static/team2.jpg new file mode 100755 index 0000000..b128906 Binary files /dev/null and b/static/team2.jpg differ diff --git a/templates/index.html.j2 b/templates/index.html.j2 new file mode 100644 index 0000000..e69de29 diff --git a/uwsgi.ini b/uwsgi.ini new file mode 100644 index 0000000..acf3716 --- /dev/null +++ b/uwsgi.ini @@ -0,0 +1,30 @@ +[uwsgi] +uid = uwsgi +gid = uwsgi + +# 启动服务监听的地址和端口 +http-socket = 0.0.0.0:8205 + +# 指定虚拟环境路径 +virtualenv = /opt/service/python_prj/pictoHub.env + +# 指定 Flask 应用文件的路径 +wsgi-file = /opt/service/python_prj/kunjHub/app.py + +# 设置 Flask 的应用实例 +callable = app + +# 设置静态文件目录映射 +static-map = /static=/opt/service/python_prj/kunjHub/static/ + +# 日志文件 +logto = /var/log/uwsgi/kunj-project.log + +# 设置进程数 +processes = 4 + +# 启动时的 Python 环境路径 +home = /opt/service/python_prj/pictoHub.env + +# 确保应用正常启动 +touch-reload = /opt/service/python_prj/kunjHub/app.py