-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from idealista/develop
Develop
- Loading branch information
Showing
11 changed files
with
44 additions
and
24 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
include README.md | ||
include LICENSE | ||
include requirements.txt | ||
include bin/wsgi.py | ||
include */config/* | ||
recursive-include */resources/ * |
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
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
FROM python:3.5-slim-jessie | ||
FROM python:3.6-slim-stretch | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
EXPOSE 8089 | ||
|
||
RUN apt-get update && apt-get install -y build-essential | ||
RUN pip install prom2teams | ||
COPY config.ini /opt/prom2teams/config.ini | ||
COPY prom2teams_start.sh /opt/prom2teams/prom2teams_start.sh | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ def read_requirements_file(): | |
|
||
|
||
setup(name='prom2teams', | ||
version='2.0.0', | ||
version='2.0.1', | ||
description='Project that redirects Prometheus Alert Manager ' | ||
'notifications to Microsoft Teams', | ||
long_description=readme, | ||
|
@@ -41,6 +41,9 @@ def read_requirements_file(): | |
'': ['*.ini', '*.j2'], | ||
}, | ||
include_package_data=True, | ||
data_files=[ | ||
('/usr/local/etc/prom2teams', ['bin/wsgi.py']) | ||
], | ||
url='http://github.com/idealista/prom2teams', | ||
author='Idealista, S.A.U', | ||
author_email='[email protected]', | ||
|