Skip to content

Commit

Permalink
Service creation procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
sierpinskiii committed Sep 9, 2022
1 parent 84475be commit 19725dd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion octane.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

def newroom():
obj = {'name': 'string'}
x = requests.post(url, json=obj)
x = requests.post(url+"room/", json=obj)
with open("id", "w") as f: # .octane.d/id
f.write(str(x.json()["id"]))
return x
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion octaned.service → octaned.service.sample
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Unit]
Description=Quantilier Startup Service
Description=Octane
Wants=network-online.target
After=network-online.target

Expand Down

0 comments on commit 19725dd

Please sign in to comment.