Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Makefile.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
server-compose-build-nocache:
docker compose --compatibility build --no-cache

server-compose-interactive:
docker compose --compatibility build
docker compose --compatibility -f docker-compose.yml -f docker-compose-dev.yml up

server-compose:
docker compose --compatibility build
docker compose --compatibility -f docker-compose.yml -f docker-compose-dev.yml up -d

server-compose-production:
docker compose --compatibility build
docker compose --compatibility -f docker-compose.yml up -d

attach:
docker exec -i -t template-streamlit /bin/bash
4 changes: 2 additions & 2 deletions install_corromics.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ conda init

#Create and activate Conda environment
echo "Creating Conda environment 'corromics_env'..."
conda create -y -n corromics_env python=3.10
conda create -y -n corromics_env python=3.11
conda activate corromics_env

# Step 3: Install dependencies
Expand All @@ -50,7 +50,7 @@ echo "All dependencies installed successfully!"
# Step 4: Clone Corromics repository (if not already downloaded)
if [ ! -d "$HOME/Corromics" ]; then
echo "Cloning Corromics from GitHub..."
git clone https://github.com/abzer005/Corromics.git "$HOME/Corromics"
git clone https://github.com/Functional-Metabolomics-Lab/Corromics.git "$HOME/Corromics"
else
echo "Corromics folder already exists. Skipping clone."
fi
Expand Down