Skip to content

Commit 2db6ca8

Browse files
feat: Initialize full-stack application with core backend modules, database integration, and foundational frontend structure including i18n.
1 parent a02f8ae commit 2db6ca8

51 files changed

Lines changed: 13767 additions & 322 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
MONO_REPO_ROOT=true
2+
3+
# Database
4+
MONGO_URI=mongodb://localhost:27017/mavluda-beauty
5+
6+
# Security
7+
JWT_SECRET=CHANGE_ME_IN_PRODUCTION
8+
9+
# Telegram
10+
TELEGRAM_BOT_TOKEN=YOUR_BOT_TOKEN
11+
12+
# Payments (Alif)
13+
ALIF_MERCHANT_ID=YOUR_MERCHANT_ID
14+
ALIF_TOKEN=YOUR_ALIF_TOKEN
15+
16+
# Server
17+
PORT=3000
18+
19+
# Frontend
20+
FRONTEND_URL=http://localhost:4200

.github/workflows/frontend-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install Dependencies
3333
run: cd frontend && npm i --legacy-peer-deps
3434

35-
- name: Build Admin Panel
35+
- name: Build Mavluda Beauty Frontend
3636
run: cd frontend && npm run build --prod --base-href=/mavluda-beauty/
3737

3838
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)