-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define
appsignal.start()
initialization method
This allows for a more ergonomic replacement to the previous: ```python from __appsignal__ import appsignal appsignal.start() ``` Into a simpler: ```python import appsignal appsignal.start() ``` But, more importantly, it allows users to keep the AppSignal configuration file at the project root (where commands such as `appsignal diagnose` expect to find it) and refer it from other parts of their application (such as `project_name/wsgi.py` in a Django project) without imposing the demand for the project root to itself be a Python package.
- Loading branch information
Showing
3 changed files
with
59 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.