initial project code commit
This commit is contained in:
BIN
config/.DS_Store
vendored
Normal file
BIN
config/.DS_Store
vendored
Normal file
Binary file not shown.
3
config/artinit-dev-ashty.sh
Executable file
3
config/artinit-dev-ashty.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
export ARTCONFIG="/home/ashty/devel/projects/iki/artxc/software/artpipeline/config/artpipeline.cfg"
|
||||
|
||||
conda activate /home/ashty/devel/projects/iki/artxc/env/newartenv
|
||||
3
config/artinit.sh
Executable file
3
config/artinit.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
export ARTCONFIG="/home/ashty/devel/projects/iki/artxc/software/artpipeline/config/artpipeline.cfg"
|
||||
|
||||
conda activate /home/ashty/devel/projects/iki/artxc/env/newartenv
|
||||
10
config/artpipeline.cfg
Normal file
10
config/artpipeline.cfg
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"inbox": "/home/ashty/data/iki/mvn_sandbox/mvn/inbox",
|
||||
"newbox": "/home/ashty/data/iki/mvn_sandbox/new",
|
||||
"tmpdir": "/home/ashty/data/iki/mvn_sandbox/temp",
|
||||
"mvndir": "/home/ashty/data/iki/mvn_sandbox/mvn",
|
||||
"datadir": "/home/ashty/data/iki/mvn_sandbox/mvn/data",
|
||||
"indexdir": "/home/ashty/data/iki/mvn_sandbox/mvn/index",
|
||||
"dnlogsdir": "/home/ashty/data/iki/mvn_sandbox/mvn/dnlogs",
|
||||
"vvlbasedir": "/home/ashty/data/iki/mvn_sandbox/mvn/vvlbase"
|
||||
}
|
||||
1
config/devel/activate-conda.sh
Executable file
1
config/devel/activate-conda.sh
Executable file
@@ -0,0 +1 @@
|
||||
conda activate ${PWD}/../mvnenv/
|
||||
1
config/devel/activate.sh
Executable file
1
config/devel/activate.sh
Executable file
@@ -0,0 +1 @@
|
||||
conda activate ${PWD}/../mvnenv/
|
||||
5
config/devel/install.sh
Executable file
5
config/devel/install.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
pip install mvntools/
|
||||
pip install mvndac/
|
||||
8
config/devel/uninstall.sh
Executable file
8
config/devel/uninstall.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
pip uninstall mvntools --yes
|
||||
rm -rf mvntools/build
|
||||
|
||||
pip uninstall mvndac --yes
|
||||
rm -rf mvndac/build
|
||||
11
config/setup/conda/configure.sh
Executable file
11
config/setup/conda/configure.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "cleaning previous environment..."
|
||||
rm -rf .venv
|
||||
|
||||
echo "creating new environment..."
|
||||
conda create --yes --prefix $(pwd)/env python=3.11 pip
|
||||
|
||||
echo "finished"
|
||||
|
||||
|
||||
7
config/setup/conda/environment.txt
Executable file
7
config/setup/conda/environment.txt
Executable file
@@ -0,0 +1,7 @@
|
||||
|
||||
rm -rf .venv
|
||||
|
||||
conda create --yes --prefix \$PWD/.venv/ python=3.11 pip
|
||||
conda activate \$PWD/.venv/
|
||||
|
||||
pip install -r requirements.txt
|
||||
17
config/setup/configure-dev.sh
Executable file
17
config/setup/configure-dev.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
echo "cleaning previous environment..."
|
||||
rm -rf .venv
|
||||
|
||||
echo "creating new environment..."
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
|
||||
echo "install pip..."
|
||||
python3 -m ensurepip --default-pip
|
||||
|
||||
echo "install requirements..."
|
||||
pip install -r requirements-dev.txt
|
||||
|
||||
echo "finished"
|
||||
18
config/setup/configure.sh
Executable file
18
config/setup/configure.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
echo "cleaning previous environment..."
|
||||
rm -rf .venv
|
||||
|
||||
echo "creating new environment..."
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
|
||||
echo "install pip..."
|
||||
python3 -m ensurepip --default-pip
|
||||
|
||||
echo "install requirements..."
|
||||
pip install -r requirements.txt
|
||||
|
||||
echo "finished"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user