mirror of
https://github.com/vale981/clay
synced 2025-03-04 09:11:37 -05:00
10 lines
116 B
Bash
10 lines
116 B
Bash
#!/bin/bash
|
|
|
|
if ! [[ -d ".env" ]]
|
|
then
|
|
virtualenv .env
|
|
fi
|
|
|
|
. .env/bin/activate
|
|
pip install -r requirements.txt
|
|
|