-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update version in package.json * Flask v1.0.2 * make Flask configurable based on FLASK_ENV * update README with table of contents, credits and installation steps
- Loading branch information
1 parent
1e9e6b6
commit 8907129
Showing
6 changed files
with
82 additions
and
9 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 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,10 @@ | ||
class Config(object): | ||
pass | ||
|
||
class ProductionConfig(Config): | ||
ELASTICSEARCH_HOST = 'elasticsearch' | ||
JANUS_HOST = 'janus' | ||
|
||
class DevelopmentConfig(Config): | ||
ELASTICSEARCH_HOST = '127.0.0.1' | ||
JANUS_HOST = '127.0.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "graph-explorer", | ||
"description": "Explore and find suspicious activities in a graph of money transactions", | ||
"version": "0.3.1", | ||
"version": "0.4.0", | ||
"author": "benoitguigal <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
|
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,4 +1,4 @@ | ||
elasticsearch==6.3.1 | ||
Flask==0.12.3 | ||
Flask==1.0.2 | ||
gremlinpython==3.2.6 | ||
gunicorn==19.9.0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.