Initial commit: Tasteby - YouTube restaurant map service
Backend (FastAPI + Oracle ADB), Frontend (Next.js), daemon worker. Features: channel/video/restaurant management, semantic search, Google OAuth, user reviews. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
28
ecosystem.config.js
Normal file
28
ecosystem.config.js
Normal file
@@ -0,0 +1,28 @@
|
||||
module.exports = {
|
||||
apps: [
|
||||
{
|
||||
name: "tasteby-api",
|
||||
cwd: "./backend",
|
||||
script: "run_api.py",
|
||||
interpreter: ".venv/bin/python",
|
||||
env: {
|
||||
PYTHONPATH: ".",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "tasteby-daemon",
|
||||
cwd: "./backend",
|
||||
script: "run_daemon.py",
|
||||
interpreter: ".venv/bin/python",
|
||||
env: {
|
||||
PYTHONPATH: ".",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "tasteby-web",
|
||||
cwd: "./frontend",
|
||||
script: "npm",
|
||||
args: "run dev",
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user