61 lines
1.6 KiB
Python
61 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Quick start script for NoteDiscovery
|
|
Run this to start the application without Docker
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
try:
|
|
import colorama
|
|
colorama.just_fix_windows_console()
|
|
except ImportError:
|
|
colorama = None
|
|
|
|
def main():
|
|
print("🚀 Starting NoteDiscovery...\n")
|
|
|
|
# Check if requirements are installed
|
|
try:
|
|
import fastapi
|
|
import uvicorn
|
|
except ImportError:
|
|
print("📦 Installing dependencies...")
|
|
subprocess.check_call([sys.executable, "-m", "pip", "install", "-r", "requirements.txt"])
|
|
|
|
# Create data directories
|
|
Path("data").mkdir(parents=True, exist_ok=True)
|
|
Path("plugins").mkdir(parents=True, exist_ok=True)
|
|
|
|
# Get port from environment variable or use default
|
|
port = os.getenv("PORT", "8000")
|
|
|
|
print("✓ Dependencies installed")
|
|
print("✓ Directories created")
|
|
print("\n" + "="*50)
|
|
print("🎉 NoteDiscovery is running!")
|
|
print("="*50)
|
|
print(f"\n📝 Open your browser to: http://localhost:{port}")
|
|
print("\n💡 Tips:")
|
|
print(" - Press Ctrl+C to stop the server")
|
|
print(" - Your notes are in ./data/")
|
|
print(" - Plugins go in ./plugins/")
|
|
print(f" - Change port with: PORT={port} python run.py")
|
|
print("\n" + "="*50 + "\n")
|
|
|
|
# Run the application
|
|
subprocess.call([
|
|
sys.executable, "-m", "uvicorn",
|
|
"backend.main:app",
|
|
"--reload",
|
|
"--host", "0.0.0.0",
|
|
"--port", port
|
|
])
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|