BCO Portal Local Deployment: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
# Switch to the latest release branch: | # Switch to the latest release branch: | ||
## <code>git switch 22.10</code> | ## <code>git switch 22.10</code> | ||
#Enter the repository, create a virtual environment, and install the required packages: | |||
##<code>pyenv local 3.9.4</code> (Note: will show as pyenv: command not found if already installed) | |||
##<code>python3.9 -m venv env</code> | |||
##<code>source env/bin/activate</code> (activated virtual environment by ''showing (env) (base) MacBook-Pro-3:bco_api'') | |||
##<code>python -m pip install -r requirements.txt</code> (if installation failed, make sure you are in the correct path: /Users/Username/bco_api) | |||
#Modify Configuration file | |||
##Once in the virtual environment, make sure you are on the path:/Users/Username/bco_api | |||
##Edit the server.conf file: <code>vim bco_api/bco_api/server.conf</code> |
Revision as of 19:02, 4 October 2022
In order to work with BCO API locally, please follow the following steps to set up:
Mac OS:
- Clone the GitHub Repository
- Open Terminal, enter following commands:
git clone https://github.com/biocompute-objects/bco_api
cd bco_api
- Open Terminal, enter following commands:
- Switch to the latest release branch:
git switch 22.10
- Enter the repository, create a virtual environment, and install the required packages:
pyenv local 3.9.4
(Note: will show as pyenv: command not found if already installed)python3.9 -m venv env
source env/bin/activate
(activated virtual environment by showing (env) (base) MacBook-Pro-3:bco_api)python -m pip install -r requirements.txt
(if installation failed, make sure you are in the correct path: /Users/Username/bco_api)
- Modify Configuration file
- Once in the virtual environment, make sure you are on the path:/Users/Username/bco_api
- Edit the server.conf file:
vim bco_api/bco_api/server.conf