add readme for documentation

This commit is contained in:
Pouya Defaei
2026-05-02 08:52:08 +03:30
parent fc97bc5f59
commit 3edf6ff351
27 changed files with 927 additions and 664 deletions

17
ecosystem.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
apps: [
{
name: "new_client",
script: "npm",
args: "start",
cwd: __dirname,
instances: 1,
exec_mode: "fork",
watch: false,
env: {
NEXT_PUBLIC_BACKEND_URL: "http://127.0.0.1:4000",
NEXT_PUBLIC_BACKEND_URL_LOCAL: "http://127.0.0.1:4000",
},
},
],
};