-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Instrument Sentry + Fix IAM Policy (#76)
* IAM Policy Fix + Dev Server (#74) * added script to start dev server on different port * chmod +x * added additional resource to smolvault-policy * upgraded python deps * Sentry Monitoring (#75) * loading sentry dsn from env file * only call init on sentry sdk if enabled * removed sentry debug endpoint * updated project version to 0.8.0
- Loading branch information
Showing
7 changed files
with
108 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
source .venv/bin/activate | ||
hypercorn src.smolvault.main:app -b 0.0.0.0:8200 --debug \ | ||
--log-config=logging.conf --log-level=DEBUG \ | ||
--access-logfile=hypercorn.access.log \ | ||
--error-logfile=hypercorn.error.log \ | ||
--keep-alive=120 --workers=1 |
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 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