Skip to content

Commit

Permalink
fix env file location
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Jul 17, 2023
1 parent 0e2480b commit a31dbd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion codeboxapi/config.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import os
from typing import Optional
from pydantic import BaseSettings
from dotenv import load_dotenv

# .env file
load_dotenv()
load_dotenv("./.env")


class CodeBoxSettings(BaseSettings):
Expand Down

0 comments on commit a31dbd7

Please sign in to comment.