mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-09 12:41:56 -05:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
import { existsSync } from "fs"
|
|
|
|
if (!existsSync(".env")) {
|
|
console.error(" I did not see .env being here. You sure it was there?")
|
|
console.error(" Copy .env.example to .env, edit .env, and try again.\n")
|
|
process.exit(1)
|
|
}
|
|
|
|
process.exit(0)
|