Skip to content

Commit

Permalink
chore: updated package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
broomva committed Feb 9, 2024
1 parent 850a0f2 commit 81c70ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"vortex-flows-daemon": "dagster-daemon run",
"next-dev": "next dev",
"next-start": "next start",
"dev": "pip install -r requirements.txt && concurrently \"npm run next-dev\" \"npm run host-api\" \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"start": "pip install -r requirements.txt && concurrently \"npm run next-start\" \"npm run host-api\" \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"build": "next build",
"lint": "next lint"
"dev": "pip install . && concurrently \"npm run next-dev\" \"npm run host-api\" \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"start": "pip install . && concurrently \"npm run next-start\" \"npm run host-api\" \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"build": "next build && pip install .",
"lint": "next lint && black ."
},
"dependencies": {
"@types/node": "20.2.4",
Expand Down
3 changes: 3 additions & 0 deletions vortex/api/data_models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# %%
import os
from datetime import datetime
from dotenv import load_dotenv

from sqlalchemy import JSON, Column, DateTime, Integer, String, Text, create_engine
from sqlalchemy.engine import URL
from sqlalchemy.orm import declarative_base, sessionmaker

load_dotenv()

# from decouple import config


Expand Down

0 comments on commit 81c70ad

Please sign in to comment.