diff --git a/dist/index.html b/dist/index.html index 5da7ed3..e744409 100644 --- a/dist/index.html +++ b/dist/index.html @@ -4,7 +4,7 @@ - Svelte app + Jobs Server diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..f0270da --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,12 @@ +module.exports = { + 'apps' : [{ + 'name': 'Job Scraper', + 'script': './grabber.js', + 'watch': './grabber.js' + }, { + 'name': 'Job Server', + 'script': './server/server.js', + 'watch': './server/server.js' + }] + +}; diff --git a/projectIcon.png b/projectIcon.png index 1090a13..f9e389d 100644 Binary files a/projectIcon.png and b/projectIcon.png differ