a icon indicating copy to clipboard operation
a copied to clipboard

Lughati

Open A70ao opened this issue 5 months ago • 0 comments

mkdir lughati-app && cd lughati-app git init npm create svelte@latest . npm install npm install -D tailwindcss postcss autoprefixer npx tailwindcss init tailwind.config.cjs -p module.exports = { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: {}, }, plugins: [], }; @tailwind base; @tailwind components; @tailwind utilities; git clone https://github.com/chatgpt-openai-arabic/lughati-template.git cd lughati-template git remote remove origin git remote add origin https://github.com/اسمك/lughati-app.git git push -u origin main VITE_APPWRITE_ENDPOINT=https://github.com/appwrite/starter-for-android cd starter-for-android const val APPWRITE_PROJECT_ID = "6870b9b5001b3ae6bb4e" npm install npm run dev -- --open lughati-app/ ├─ src/ │ ├─ lib/ │ │ ├─ appwrite.ts │ │ ├─ stores/user.ts │ │ └─ components/ │ │ ├─ Nav.svelte │ │ └─ LessonCard.svelte │ ├─ routes/ │ │ ├─ +layout.svelte │ │ ├─ +page.svelte │ │ ├─ auth/ │ │ │ ├─ login.svelte │ │ │ └─ signup.svelte │ │ └─ lessons/ │ │ ├─ +page.svelte │ │ └─ [id]/ │ │ ├─ +page.svelte │ │ └─ test.svelte ├─ app.css ├─ tailwind.config.cjs ├─ svelte.config.js ├─ package.json ├─ .env (تقوم بإضافته) └─ README.md

A70ao avatar Jul 11 '25 11:07 A70ao