Skip to content

Commit

Permalink
modify: make sure script is executable,
Browse files Browse the repository at this point in the history
resolves #23
  • Loading branch information
Mohammad Mahdi Baghbani Pourvahid committed Dec 19, 2022
1 parent 098fcd6 commit 4df31fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tasks:
- init: ./cyb-app/run-docker.sh gitpod build && ./cyb-app/run-docker.sh gitpod pull
- command: ./cyb-app/run-docker.sh gitpod up
- init: chmod +x ./cyb-app/run-docker.sh && ./cyb-app/run-docker.sh gitpod build && ./cyb-app/run-docker.sh gitpod pull
- command: chmod +x ./cyb-app/run-docker.sh && ./cyb-app/run-docker.sh gitpod up
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,22 @@ See [Federated Bookkeeping](https://federatedbookkeeping.org) for more info on t
cd cyb-app
chmod u+x ./run-docker.sh
./run-docker.sh dev pull
./run-docker.sh dev up --detach
./run-docker.sh dev up

```

### for developing on Gitpod:
```sh
cd cyb-app
chmod u+x ./run-docker.sh
./run-docker.sh gitpod pull
./run-docker.sh gitpod up --detach
./run-docker.sh gitpod up
```

### for deploying on VPS:
```sh
cd cyb-app
chmod u+x ./run-docker.sh
./run-docker.sh prod pull
./run-docker.sh prod up --detach
./run-docker.sh prod up
```

0 comments on commit 4df31fa

Please sign in to comment.