mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-11 13:10:45 +00:00
21 lines
471 B
Bash
Executable File
21 lines
471 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
# Run the mobile app
|
|
##
|
|
|
|
|
|
# funcs (mac doesnt have realpath)
|
|
realpath() {
|
|
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
|
|
}
|
|
|
|
path_conda="`realpath ~/comrad/lib/miniconda3`"
|
|
path_venv="`realpath ~/comrad/code/venv`"
|
|
path_repo="`realpath ~/comrad/code`"
|
|
|
|
source $path_conda/etc/profile.d/conda.sh
|
|
export PATH=\"$path_conda/bin:\$PATH\"
|
|
conda activate $path_venv
|
|
python -m pip install -r $path_repo/requirements.txt
|
|
python $path_repo/comrad/app/main.py |