From 2368104bc88079a226ed2338428a4715e6efdf3e Mon Sep 17 00:00:00 2001 From: creations Date: Sun, 18 May 2025 19:13:01 -0400 Subject: [PATCH] conf files --- .editorconfig | 12 ++++++++++++ .env.example | 7 +++++++ .gitattributes | 1 + .gitignore | 5 +++++ 4 files changed, 25 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..980ef21 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..11c07d0 --- /dev/null +++ b/.env.example @@ -0,0 +1,7 @@ +HOST=0.0.0.0 +PORT=8080 + +# Replace with your domain name or IP address +# If you are using a reverse proxy, set the FQDN to your domain name +FQDN=http://localhost:8080 +BACKEND_URL=http://localhost:9090 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36e4935 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/node_modules +bun.lock +.env +/uploads +.idea