7717e2a5b2
- Add main application structure with App component - Implement state management for counter functionality - Create CSS styles for application layout and components - Include assets for logos and hero image - Set up Vite configuration for development environment - Establish global CSS variables for theming
11 lines
288 B
Python
11 lines
288 B
Python
from sqlalchemy import create_engine
|
|
from sqlalchemy.orm import sessionmaker, declarative_base
|
|
import os
|
|
|
|
DATABASE_URL = os.getenv("DATABASE_URL")
|
|
|
|
engine = create_engine(DATABASE_URL)
|
|
SessionLocal = sessionmaker(bind=engine, autocommit=False, autoflush=False)
|
|
|
|
Base = declarative_base()
|