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