Skip to content

Commit

Permalink
Merge pull request #10 from girardinsamuel/fix/3.0
Browse files Browse the repository at this point in the history
Fix 3.0 project template
  • Loading branch information
josephmancuso authored Jan 16, 2021
2 parents 241cf74 + 7197eb2 commit 4d093b8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .env-example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_NAME=Masonite 2.3
APP_NAME=Masonite 3.0
APP_ENV=local
APP_DEBUG=True
AUTH_GUARD=web
Expand Down
2 changes: 1 addition & 1 deletion config/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
any other location as required by the application or its packages.
"""

NAME = env("APP_NAME", "Masonite 2.3")
NAME = env("APP_NAME", "Masonite 3.0")

"""Application Debug Mode
When your application is in debug mode, detailed error messages with
Expand Down
2 changes: 0 additions & 2 deletions config/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
ViewProvider,
WhitenoiseProvider,
)
from masonite.validation.providers.ValidationProvider import ValidationProvider

from masonite.logging.providers import LoggingProvider
from masonite.validation.providers import ValidationProvider

Expand Down
3 changes: 1 addition & 2 deletions wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
LoadEnvironment()

from masonite.app import App

from masonite.helpers import config
from masonite.wsgi import response_handler
from config import application, providers

"""Instantiate Container And Perform Important Bindings
Some Service providers need important bindings like the WSGI application
Expand Down

0 comments on commit 4d093b8

Please sign in to comment.