Skip to content

Commit

Permalink
fix: db setup instructions, endpoints documentation
Browse files Browse the repository at this point in the history
* fix installation instructions

* fix wrong endpoints in documentation
  • Loading branch information
simon511000 authored Feb 2, 2024
1 parent 4f9298c commit 673de99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Using the `sqlite3` tool, run the following commands:
```sh
$ sqlite3 /path/to/database.db
sqlite> create table auth("ID" INTEGER, name, pass TEXT, PRIMARY KEY("ID"));
sqlite> insert into auth values(1, "admin_user", "admin_password"); # Replace user and password with something secure
sqlite> insert into auth values(1, 'admin_user', 'admin_password'); # Replace user and password with something secure
```

If everything was set up correctly, the auth table should look like this:
Expand Down Expand Up @@ -173,7 +173,7 @@ Creates a new release for the given image.
Retrieves the most recent release from the image.
*Endpoint:* `http://[base_url]/[image]/latest`
*Endpoint:* `http://[base_url]/images/[image]/latest`
*Parameters:* None
Expand All @@ -197,7 +197,7 @@ Retrieves the most recent release from the image.
Searches for a specific release by its digest.
*Endpoint:* `http://[base_url]/[image]/[digest]`
*Endpoint:* `http://[base_url]/images/[image]/[digest]`
*Parameters:* None
Expand Down

0 comments on commit 673de99

Please sign in to comment.