mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
* init: live server for editor realtime sync * chore: authentication added * chore: updated logic to convert html to binary for old pages * chore: added description json on page update * chore: made all functions generic * chore: save description in json and html formats * refactor: document editor components * chore: uncomment ui package components * fix: without props extensions refactor * fix: merge conflicts resolved from preview * chore: init docker compose * chore: pages custom error codes * chore: add health check endpoint to the live server * chore: update without props extensions type * chore: better error handling * chore: update react-hook-form versions --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
15 lines
432 B
Bash
Executable File
15 lines
432 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 ./apiserver/.env.example ./apiserver/.env
|
|
cp ./space/.env.example ./space/.env
|
|
cp ./admin/.env.example ./admin/.env
|
|
cp ./live/.env.example ./live/.env
|
|
|
|
# Generate the SECRET_KEY that will be used by django
|
|
echo "SECRET_KEY=\"$(tr -dc 'a-z0-9' < /dev/urandom | head -c50)\"" >> ./apiserver/.env |