Naming Convention for Environment Variable
แนวทางการตั้งชื่อสำหรับ environment variable (.env) ตามข้อตกลงร่วมกัน
File Name
Description
.env
Default environment file for local development.
.env.example
Sample template for environment variables.
.env.testing
Environment file for automated tests.
.env.production
Environment file for production.
.env.staging
Environment file for staging.
.env.local
Additional local environment file to override .env
.
.env.development
Environment file for development.
.env.ci
Environment file for continuous integration (CI) builds.
Last updated