Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,4 @@ rebel.xml
# Docker
######################
**/local.env
*.env
**/.env
24 changes: 20 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ Pull requests are the best way to propose changes to the codebase (we use [Git-F
### Server Side

3. **Change working directory to the `BYTECHEF_HOME/server` folder.**
4. Create a .env file in the `BYTECHEF_HOME/server` directory.
5. Paste the following content into the .env file:

```bash
PASSWORD_FROM_LOCAL_DOT_ENV_FILE=postgres
```
4. Start up the docker container with dependent infrastructure

```bash
Expand Down Expand Up @@ -143,10 +149,20 @@ Pull requests are the best way to propose changes to the codebase (we use [Git-F

Build and run the server codebase in a Docker container. This is the easiest way to get the server instance up and running if you are more interested in contributing to the [client codebase](#client-side).

```bash
docker compose -f docker-compose.dev.server.yml down --rmi local
docker compose -f docker-compose.dev.server.yml up -d
```
3. **Change working directory to the `BYTECHEF_HOME/server` folder.**
4. Create a .env file in the `BYTECHEF_HOME/server` directory.
5. Paste the following content into the .env file:

```bash
PASSWORD_FROM_LOCAL_DOT_ENV_FILE=postgres
```
4. Start up the docker container with dependent infrastructure

```bash
docker compose -f docker-compose.dev.server.yml down --rmi local
docker compose -f docker-compose.dev.server.yml up -d
```
5. Make sure `java -version` and `JAVA_HOME` references Java JDK 25+

### Client Side

Expand Down