You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -44,18 +59,10 @@ Set parameters for API and database connections. Accounts list refers to top-lev
44
59
45
60
NOTE: The accounts section can be left blank if your Dataverse instance is not set up with separate institutions as top-level dataverses. In that case, your reports will be for everything from the root dataverse on down and sent to all admins.
46
61
62
+
## Usage
47
63
48
-
Python 3 Virtual Environment Setup
49
-
-----
50
-
```bash
51
-
python3 -m venv venv
52
-
source venv/bin/activate
53
-
pip install pipenv
54
-
pipenv install
55
-
```
64
+
**NOTE: All of the following commands assume that the user is in the virtual environment.**
56
65
57
-
Usage
58
-
-----
59
66
```bash
60
67
Usage: run.py [options]
61
68
@@ -73,30 +80,28 @@ Options:
73
80
-e, --email Email reports to liaisons?
74
81
```
75
82
76
-
<h5>Launch virtual environment</h5>
83
+
### Sample commands
84
+
85
+
- Generate and email a report of all dataverses, datasets and users for super admin(s).
77
86
78
87
```bash
79
-
$ source venv/bin/activate
88
+
python run.py -c config/application.yml -r all -g all -o $HOME/reports -e
80
89
```
81
90
82
-
<h5>Sample commands run inside the virtual environment.</h5>
91
+
- Generate and email reports of dataverses for each institution beginning at a top-level dataverse.
83
92
84
-
Generate and email a report of all dataverses, datasets and users for super admin(s).
85
93
```bash
86
-
$ python run.py -c config/application.yml -r all -g all -o $HOME/reports -e
0 commit comments