From fcc6a3733d6d514a6dfbd1711a18aaa086fd61d9 Mon Sep 17 00:00:00 2001 From: webserver-lab Date: Thu, 28 May 2026 08:30:42 +0330 Subject: [PATCH] add envs --- .env.development | 1 + .env.production | 1 + .gitignore | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .env.development create mode 100644 .env.production diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..e3b4311 --- /dev/null +++ b/.env.development @@ -0,0 +1 @@ +API_URL=http://localhost:8000/api/v1 \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..6dfefb0 --- /dev/null +++ b/.env.production @@ -0,0 +1 @@ +API_URL=http://10.1.1.127:8000/api/v1 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 5ef6a52..ec66efc 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,7 @@ yarn-error.log* .pnpm-debug.log* # env files (can opt-in for committing if needed) -.env* + # vercel .vercel