Skip to content

Commit

Permalink
Change .webhooks to .webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
Rutger van Deelen authored and Rutger van Deelen committed Mar 29, 2019
1 parent ed542fe commit 3fddb58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ There should be a green tickmark.

Login to a mentat machine of choice, for example `mentat005.dccn.nl`.

Go to your webhook results folder `/home/dccngroup/dccnuser/.webhooks/5126d168-e3f1-4c7f-b228-a57fbaf007c4`.
Go to your webhook results folder `/home/dccngroup/dccnuser/.webhook/5126d168-e3f1-4c7f-b228-a57fbaf007c4`.

Run `qstat` to check if your submitted job is queued, running or completed.

Once the script is finished you should have two text files in this result folder, for example:

```
$ cd ~/.webhooks/5126d168-e3f1-4c7f-b228-a57fbaf007c4
$ cd ~/.webhook/5126d168-e3f1-4c7f-b228-a57fbaf007c4
$ ls -1
payload
Expand Down
6 changes: 3 additions & 3 deletions internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (

// Setup of user's workspace directories and files
const (
WebhooksWorkDir = ".webhooks" // WebhooksWorkDir denotes the user's work directory
PayLoadName = "payload" // PayLoadName is the name of the payload file in user's work directory
ScriptName = "script" // ScriptName is the name of the script in the user's work directory
WebhooksWorkDir = ".webhook" // WebhooksWorkDir denotes the user's work directory
PayLoadName = "payload" // PayLoadName is the name of the payload file in user's work directory
ScriptName = "script" // ScriptName is the name of the script in the user's work directory
)

// API is used to store the database pointer
Expand Down

0 comments on commit 3fddb58

Please sign in to comment.