مولد قوالب .env
إنشاء قوالب .env.example من ملفات .env الخاصة بك. إخفاء الأسرار تلقائياً وإنشاء التوثيق.
Tips:
- • Add .env to your .gitignore file
- • Commit .env.example to your repository
- • Use comments to describe each variable
- • Never commit real secrets to version control
Environment Variables - التفاصيل التقنية
Store configuration in .env files, but never commit secrets to version control. Create .env.example with placeholder values for team members. Add .env to .gitignore and commit .env.example instead.
بديل سطر الأوامر
# .gitignore\n.env\n.env.local\n.env.*.local\n\n# Commit .env.example\ngit add .env.example