* feat(chalice): upgraded dependencies * feat(chalice): changed path analysis schema * feat(DB): click coordinate support * feat(chalice): changed path analysis issues schema feat(chalice): upgraded dependencies * fix(chalice): fixed pydantic issue * refactor(chalice): refresh token validator * feat(chalice): role restrictions
11 lines
No EOL
279 B
Bash
Executable file
11 lines
No EOL
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DOTENV_FILE=./.env
|
|
if [ -f "$DOTENV_FILE" ]; then
|
|
echo "$DOTENV_FILE exists, nothing to do."
|
|
else
|
|
cp env.dev $DOTENV_FILE
|
|
echo "$DOTENV_FILE was created, please fill the missing required values."
|
|
fi
|
|
|
|
rsync -avr --exclude=".*" --ignore-existing ../../api/* ./ |