updates on docs

This commit is contained in:
Andras Bacsai 2022-04-16 22:31:30 +02:00
parent bf01e9e29f
commit 07aa285b27

View File

@ -6,7 +6,7 @@ First of all, thank you for considering contributing to my project! It means a l
- Node.js / Javascript - Node.js / Javascript
- Svelte / SvelteKit - Svelte / SvelteKit
- Prisma.io - Prisma.io / SQL
# Recommended Pull Request Guideline # Recommended Pull Request Guideline
@ -18,6 +18,8 @@ First of all, thank you for considering contributing to my project! It means a l
- Write a proper description - Write a proper description
- Open the pull request to review - Open the pull request to review
---
# How to start after you set up your local fork? # How to start after you set up your local fork?
Due to the lock file, this repository is best with [pnpm](https://pnpm.io). I recommend you try and use `pnpm` because it is cool and efficient! Due to the lock file, this repository is best with [pnpm](https://pnpm.io). I recommend you try and use `pnpm` because it is cool and efficient!
@ -45,7 +47,7 @@ If the schema is finalized, you need to create a migration file with `pnpm db:mi
--- ---
# Adding new services # How to add new services
You can add any open-source and self-hostable software (service/application) to Coolify if the following statements are true: You can add any open-source and self-hostable software (service/application) to Coolify if the following statements are true:
@ -90,7 +92,7 @@ You need to add a new folder to [src/routes/services/[id]](src/routes/services/[
- You need to define a compose file as `const composeFile: ComposeFile` found in [src/routes/services/[id]/minio/start.json.ts](src/routes/services/[id]/minio/start.json.ts) - You need to define a compose file as `const composeFile: ComposeFile` found in [src/routes/services/[id]/minio/start.json.ts](src/routes/services/[id]/minio/start.json.ts)
IMPORTANT: It should contain `all the default environment variables` that are required for the service to function correctly and `all the volumes to persist data` in restarts. **IMPORTANT:** It should contain `all the default environment variables` that are required for the service to function correctly and `all the volumes to persist data` in restarts.
- You could also define an `HTTP` or `TCP` proxy for every other port that should be proxied to your server. (See `startHttpProxy` and `startTcpProxy` functions) - You could also define an `HTTP` or `TCP` proxy for every other port that should be proxied to your server. (See `startHttpProxy` and `startTcpProxy` functions)