mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
11258686ad
* removing dependency on tiptap pro extension * updated docs to remove tiptap pro setup instructions * chore: removed pro extension promt from setup.sh * chore: Removed Pro Extension Setup from CI --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
13 lines
363 B
Bash
Executable File
13 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
cp ./.env.example ./.env
|
|
|
|
# Export for tr error in mac
|
|
export LC_ALL=C
|
|
export LC_CTYPE=C
|
|
|
|
cp ./web/.env.example ./web/.env
|
|
cp ./space/.env.example ./space/.env
|
|
cp ./apiserver/.env.example ./apiserver/.env
|
|
|
|
# Generate the SECRET_KEY that will be used by django
|
|
echo -e "SECRET_KEY=\"$(tr -dc 'a-z0-9' < /dev/urandom | head -c50)\"" >> ./apiserver/.env |