كيفية إعداد الأمية يدويًا
الشروط المسبقة
Section titled “الشروط المسبقة”قبل تركيب “إيلوستري بلايدند” تأكد أن لديك الشروط المسبقة التالية:
- النسخة العقدية 18-17.0 أو أعلى
- MongoDB
Illustry الخلفية
Section titled “Illustry الخلفية”محليا:
Section titled “محليا:”وثمة حاجة إلى ملف اسمه .env على أساس المشروع الذي يتضمن الميادين التالية:
MONGO_URL=mongodb:/127.0.0.1:27017/illustryMONGO_TEST_URL=mongodb:/127.0.0.1:27017/illustrytestMONGO_USER=<your_personal_mongo_user>MONGO_PASSWORD=<your_personal_mongo_password>ILLUSTRY_PORT=7000أديروا الأوامر التالية:
npm i && npm run build:ts && npm run start:devpnpm install && pnpm run build:ts && pnpm run start:devyarn && yarn build:ts && yarn start:devأديروا الأوامر التالية:
docker build -t illustrybackend .docker run -p 7000:7000Illustry الواجهة الأمامية
Section titled “Illustry الواجهة الأمامية”محليا:
Section titled “محليا:”وثمة حاجة إلى ملف اسمه .env على أساس المشروع الذي يتضمن الميادين التالية:
NEXT_PUBLIC_BACKEND_PUBLIC_URL: http:/0.0.0.0:7000أديروا الأوامر التالية:
npm i && npm run build:ts && npm run start:devpnpm install && pnpm run build:ts && pnpm run start:devyarn && yarn build:ts && yarn start:dev** قبل الركض، خلق الصورة الخلفية أولا**
أديروا الأوامر التالية:
docker build -t illustryfrontend .docker run -p 3000:3000 -e NEXT_PUBLIC_BACKEND_PUBLIC_URL=http:/ilustrybackend:7000 illustryfrontend