-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit_schema.py
34 lines (27 loc) · 880 Bytes
/
init_schema.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import asyncio
import importlib
import os
from importlib import resources
import psycopg2
from dotenv import load_dotenv
from jobq.constants import Const
async def main():
load_dotenv("env/local.env")
conn = psycopg2.connect(
database=os.environ.get(Const.Config.DB.DB_NAME),
user=os.environ.get(Const.Config.DB.DB_USER),
password=os.environ.get(Const.Config.DB.DB_PASSWORD),
host=os.environ.get(Const.Config.DB.DB_HOST),
port=os.environ.get(Const.Config.DB.DB_PORT)
)
print()
print("-> Connected")
with conn.cursor() as cur:
schema_raw = importlib.resources.files("jobq").joinpath("schema.sql").read_text()
cur.execute(''.join(schema_raw))
print("-> schema written")
conn.commit()
conn.close()
print("-> looks like we win")
print()
asyncio.run(main())