From e1b6a228ce94fe7411debc73d704d0f038ea4e83 Mon Sep 17 00:00:00 2001 From: Tree Date: Wed, 28 Jun 2023 04:01:00 +0000 Subject: [PATCH] update root filenames --- .gitignore | 11 ++++++++++- Makefile | 3 +++ ecosystem.config.js => pm2.config.js | 0 3 files changed, 13 insertions(+), 1 deletion(-) rename ecosystem.config.js => pm2.config.js (100%) diff --git a/.gitignore b/.gitignore index 2eea525..fe6a775 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,10 @@ -.env \ No newline at end of file +.DS_Store +node_modules +/build +/.svelte-kit +/package +.env +.env.* +!.env.example +vite.config.js.timestamp-* +vite.config.ts.timestamp-* \ No newline at end of file diff --git a/Makefile b/Makefile index 388afb6..3c9366a 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,9 @@ fmt: format rebuild: be-restart fe-rebuild +start: + pm2 start pm2.config.js + test: deno test --unstable --allow-read ./backend/test.js diff --git a/ecosystem.config.js b/pm2.config.js similarity index 100% rename from ecosystem.config.js rename to pm2.config.js