From fb299cdf4c356a2dc9d5be6c9bf0b8d241fd0b0b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 11 Aug 2022 12:45:36 +0000 Subject: [PATCH] chore --- apps/api/.env.example | 9 +++++++++ apps/ui/README.md | 38 -------------------------------------- 2 files changed, 9 insertions(+), 38 deletions(-) create mode 100644 apps/api/.env.example delete mode 100644 apps/ui/README.md diff --git a/apps/api/.env.example b/apps/api/.env.example new file mode 100644 index 000000000..3d630cd57 --- /dev/null +++ b/apps/api/.env.example @@ -0,0 +1,9 @@ +COOLIFY_APP_ID= +COOLIFY_SECRET_KEY="12341234123412341234123412341234 - 32 long" +COOLIFY_DATABASE_URL= +COOLIFY_SENTRY_DSN= + +COOLIFY_IS_ON=docker +COOLIFY_WHITE_LABELED=false +COOLIFY_WHITE_LABELED_ICON= +COOLIFY_AUTO_UPDATE= \ No newline at end of file diff --git a/apps/ui/README.md b/apps/ui/README.md deleted file mode 100644 index 374efec4c..000000000 --- a/apps/ui/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# create-svelte - -Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). - -## Creating a project - -If you're seeing this, you've probably already done this step. Congrats! - -```bash -# create a new project in the current directory -npm init svelte - -# create a new project in my-app -npm init svelte my-app -``` - -## Developing - -Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: - -```bash -npm run dev - -# or start the server and open the app in a new browser tab -npm run dev -- --open -``` - -## Building - -To create a production version of your app: - -```bash -npm run build -``` - -You can preview the production build with `npm run preview`. - -> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.