Skip to content

Commit

Permalink
absolute path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zseta committed Mar 10, 2025
1 parent 3e0268a commit fa4cbfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ Currently supported DEMOs:
1. Edit `config.py`
```json
{
"aws_creds_file": "~/.aws/credentials",
"aws_creds_file": "/home/user/.aws/credentials",
"region": "us-east-1",
"scylla_cloud_token": "API-TOKEN",
"running_in_docker": true
}
```
* `aws_creds_file`: the location of your AWS credentials file
* `aws_creds_file`: the location (absolute path) of your AWS credentials file
* `region`: AWS region you want to use for the demo
* `scylla_cloud_token`: You can generate an API token in ScyllaDB Cloud
* `running_in_docker`: Normally this should be `true`
Expand Down Expand Up @@ -91,7 +91,7 @@ Requirements:
1. Edit `config.json`:
```json
{
"aws_creds_file": "~/.aws/credentials",
"aws_creds_file": "/home/user/.aws/credentials",
"region": "us-east-1",
"scylla_cloud_token": "API-TOKEN",
"running_in_docker": false
Expand Down
2 changes: 1 addition & 1 deletion build_and_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ docker build -t scylla-demo .
# container gets deleted when stops
# mounting the aws credentials file
# running on port 5000
docker run -p 5000:5000 --name scylla-demo --rm -v $aws_creds_file:/app/.aws/credentials -d scylla-demo
docker run -p 5000:5000 --name scylla-demo --rm -v $aws_creds_file:/app/.aws/credentials -d scylla-demo

0 comments on commit fa4cbfa

Please sign in to comment.