openreplay/api/prepare-dev.sh
Kraiem Taha Yassine 33f5d078dd
Api v1.15.0 (#1481)
* 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
2023-09-28 09:59:31 +01:00

9 lines
No EOL
219 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