-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_instructions.txt
41 lines (28 loc) · 1.62 KB
/
install_instructions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
HOW TO SETUP APP ENVIRONMENT
Reach out to [email protected] for path to stored python environment package jira_api_env.tar.gz
Requirements for base environment:
*Must be off the VPN for packages to install, possibly need conda-pack
conda install -c conda-forge conda-unpack
1. Create a folder to place the environment in
Easiest to create folder in directory of the app IE ./jira_api/app_env
2. Unzip the tar file for the environment
in your base environment terminal
tar -xzf path/to/jira_api_env.tar.gz -C "your/folder/location/here/to/env"
3. Activate the newly unzipped env
path/to/folder/for/env/scripts/activate
RUNNING THE TOOL
*Still in testing
Open the jira_data_pull.py file and run it. this file contains all the base dataset pulls.
The iJira.py file is the main interface to the jira python library.
Structure:
Jira_Api/ - main app folder
app_env/ - folder ready for setup of app environment.
auth/ - default location for authentication files.
data/ - Default location for data exports.
logs/ - Location for log file storage.
__init__.py - Used for initialization of the Jira_Api folder.
.gitignore - File containing items or folders to ignore from git.
conda_requirements.txt - File containing required packages for loading dependencies with conda.
pip_requirements.txt - File containing required packages for loading dependencies with pip.
jira_data_pull.py - File containing usage examples for the iJira.py (iJira API).
iJira.py - The interface / api itself. This is where the core logic is.