mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-22 14:25:01 +01:00
Add vim modeline to all Python files
Uses four spaces for tab and shift widths, and turns on expansion of tabs to spaces.
This commit is contained in:
parent
4e8621e3d9
commit
84801a4ab5
2
app.py
2
app.py
@ -42,3 +42,5 @@ class ItemResource:
|
|||||||
|
|
||||||
api = falcon.API()
|
api = falcon.API()
|
||||||
api.add_route('/item', ItemResource())
|
api.add_route('/item', ItemResource())
|
||||||
|
|
||||||
|
# vim: set sw=4 ts=4 expandtab:
|
||||||
|
@ -3,3 +3,5 @@ import os
|
|||||||
# Check if Solr connection information was provided in the environment
|
# Check if Solr connection information was provided in the environment
|
||||||
SOLR_SERVER = os.environ.get('SOLR_SERVER', 'http://localhost:8080/solr')
|
SOLR_SERVER = os.environ.get('SOLR_SERVER', 'http://localhost:8080/solr')
|
||||||
SOLR_CORE = os.environ.get('SOLR_CORE', 'statistics')
|
SOLR_CORE = os.environ.get('SOLR_CORE', 'statistics')
|
||||||
|
|
||||||
|
# vim: set sw=4 ts=4 expandtab:
|
||||||
|
Loading…
Reference in New Issue
Block a user