I am using GAE to set up a simple REST API which allows me to process data in MongoDB.
Additionally, I have a forever script (like a daemon process) which is running a redis based queue.
I need to run my queue separately from my server instance... I am confused as to how to set this up in google app engine. Should I create a second project with a new server instance?
My package.json has this:
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
I suppose I will need either a new project or a second app engine instance. Any help in the right direction is appreciated.
Thank you for your time.