aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
-rw-r--r--db/db.sql29
2 files changed, 5 insertions, 31 deletions
diff --git a/README.md b/README.md
index 3d39ceb..8eed2df 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,9 @@ An attempt to reimplement flog, using the [kore.io](https://kore.io) framework.
## TODO
-* UUIDs in postgres
-* Dockerize
+* Use UUIDs for primary key in PostgreSQL.
+* Dockerize.
* Determine how to handle `lib`/dependencies.
+* Add GET /resource/{UUID} endpoint.
+* Figure out how to build a statically-linked/standalone binary.
+* Upgrade to Kore 4.2.
diff --git a/db/db.sql b/db/db.sql
index 69c9fcc..921ce06 100644
--- a/db/db.sql
+++ b/db/db.sql
@@ -9,32 +9,3 @@ CREATE TABLE posts (
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW()
);
-
-INSERT INTO posts (
- id,
- title,
- body
-)
-VALUES
-(
- 1,
- 'First Post',
- '# Heading
-
-Content
-
-## Sub heading
-
-More content ...'
-),
-(
- 2,
- 'Second Post',
- 'Testing [a link](https://bunkergate.org)'
-),
-(
- 3,
- 'xxx',
- '**testing bold**'
-);
-