Skip to content

Commit 3ad3833

Browse files
committed
Merge branch 'develop'
2 parents 2d197da + 499399a commit 3ad3833

2 files changed

Lines changed: 19 additions & 12 deletions

File tree

README.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,32 @@ cp config/application.yml.sample config/application.yml
2424
### Example
2525

2626
```yaml
27-
dataverse_api_host: ''
28-
dataverse_api_key: ''
29-
dataverse_db_host: ''
30-
dataverse_db_username: ''
31-
dataverse_db_password: ''
27+
dataverse_name: 'My data repository'
28+
api:
29+
host: 'http://localhost:8080'
30+
token: 'sample_key'
31+
timeout: 60
32+
database:
33+
host: 'localhost'
34+
port: 5432
35+
name: 'dataverse'
36+
username: 'db_user'
37+
password: 'db_password'
38+
smtp:
39+
host: 'localhost'
40+
auth: ''
41+
port: 25
42+
username: 'username'
43+
password: 'password'
44+
include_dataset_metrics: false
3245
work_dir: '/tmp'
3346
log_path: 'logs'
3447
log_file: 'dataverse-reports.log'
3548
log_level: 'INFO'
36-
smtp_host: 'localhost'
37-
smtp_auth: ''
38-
smtp_port: 25
39-
smtp_username: 'username'
40-
smtp_password: 'password'
4149
from_email: ''
4250
admin_emails:
4351
- email1
4452
- email2
45-
from_email: ''
4653
accounts:
4754
account1:
4855
name: Account 1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "dataverse-reports"
33
version = "2.0.0"
44
description = "Generate and email statistical reports for content stored in Dataverse - https://dataverse.org/."
55
authors = ["nwoodward <woodward.nicholas@gmail.com>"]
6-
license = "GPLv3"
6+
license = "MIT"
77
readme = "README.md"
88

99
[tool.poetry.dependencies]

0 commit comments

Comments
 (0)