first commit

This commit is contained in:
HiepLM
2026-05-20 17:37:36 +07:00
commit d1986f261c
2086 changed files with 11013 additions and 0 deletions

29
README.md Normal file
View File

@@ -0,0 +1,29 @@
# Thiệp cưới — chạy trên Windows
Website tĩnh (Ladipage). Cần chạy qua **web server cục bộ** — không mở trực tiếp file `index.html` bằng double-click (ảnh/JS sẽ lỗi).
## Cách nhanh nhất
1. Double-click file **`start.bat`** trong thư mục dự án.
2. Trình duyệt sẽ mở: `http://localhost:8080/www.mewedding.vn/index.html`
3. Dừng server: nhấn `Ctrl+C` trong cửa sổ đen (hoặc đóng cửa sổ).
## Chạy bằng PowerShell
```powershell
cd "D:\Thiệp Cứoi\Wed-dt"
powershell -ExecutionPolicy Bypass -File .\serve.ps1
```
Nếu Windows chặn script lần đầu, chạy một lần:
```powershell
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
```
## Deploy lên server (Kubernetes)
```bash
kubectl -n wedding rollout restart deploy/wedding-web
kubectl -n wedding rollout status deploy/wedding-web
```