We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd163b2 commit e6896f8Copy full SHA for e6896f8
bootstrap/start.py
@@ -2,15 +2,17 @@
2
import os
3
import re
4
5
+# Load environment variable from .env file
6
from dotenv import find_dotenv, load_dotenv
7
+load_dotenv(find_dotenv())
8
+
9
from masonite.request import Request
10
from masonite.routes import Route
11
from masonite.storage import Storage
12
from config import middleware
13
from pydoc import locate
14
-# Load environment variable from .env file
-load_dotenv(find_dotenv())
15
16
17
# Run once and only once the server is ran
18
# This will not actually compile if the libsass module in not installed
0 commit comments