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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@ data/metadata-history/*
metadata_tmp/

.env
.DS_Store

# vscode payload should not be ignored at all, node_modules are also important.
# same goes for dist folders.
!/public/console/vscode-payload/**/*
.DS_Store
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ data/metadata-history/*
metadata_tmp/

.DS_Store

# vscode payload should not be ignored at all, node_modules are also important.
# same goes for dist folders.
!/public/console/vscode-payload/**/*
.DS_Store
12 changes: 6 additions & 6 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,24 @@ docker run -d -p 8081:1331 --env HLAMBDA_ADMIN_SECRET=demo --name hlambda-server
This will:

- Run a new container named: hlambda-server
- Run latest hlambda server on host port: 8081
- Set hlambda server admin secret to: `demo`
- Create volume for your metadata named: hlambda_metadata
- Run the latest hlambda server on host port: 8081
- Set the hlambda server admin secret to: `demo`
- Create a volume for your metadata named: hlambda_metadata

Hlambda Console will be available at `http://localhost:8081`.

### Docker Compose Stack with [Hasura](https://hasura.io) <3 and Postgres <3

To run Hlambda in docker stack with Postgres and [Hasura](https://hasura.io) you can run:
To run Hlambda in the docker stack with Postgres and [Hasura](https://hasura.io) you can run:

```
curl https://www.hlambda.io/raw/code/start/docker-compose.yaml -o docker-compose.yaml && docker compose up -d
```

This will:

- Download the docker-compose.yaml file (Warning: please read the contents of the YAML file to understand what you are actually running)
- Run new docker-compose stack
- Download the `docker-compose.yaml` file (Warning: please read the contents of the YAML file to understand what you are actually running)
- Run a new docker-compose stack

# License

Expand Down
Loading