about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2022-12-07 18:44:15 -0500
committerelioat <elioat@tilde.institute>2022-12-07 18:44:15 -0500
commit117f7f7c053269d2b6b24e55ab057aa7777c3d9f (patch)
treeedecfcdac53da00909234fdbbc501648745f9f30 /src
parent93aad9aee750e22817d2417f90e58bd82b454278 (diff)
downloaddecember-2022-117f7f7c053269d2b6b24e55ab057aa7777c3d9f.tar.gz
sketching
Diffstat (limited to 'src')
-rw-r--r--src/catalogue.lil15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/catalogue.lil b/src/catalogue.lil
index 2690bcb..0a8be1a 100644
--- a/src/catalogue.lil
+++ b/src/catalogue.lil
@@ -23,4 +23,17 @@
 # input data. Input data stored as CSV between sessions
 
 # NOTE: if input data is stored as CSV is becomes trivial to pipe in and out 
-# of SQLite in the future...if that'd be desirable
\ No newline at end of file
+# of SQLite in the future...if that'd be desirable
+
+# NOTE: I'm using just 1 table so that this can be easily exported as CSV...
+# if it weren't for that requirement, I'd have multiple tables
+
+catalogue.entry_type:"folder","folder","note","link","link"
+catalogue.parent:0,0,0,0,0 # QUESTION: how to reference other entries by IDs
+catalogue.title:"read","to read","what an idea","Oatmeal","sans"
+catalogue.body:0,0,"what if I made a lil cli",0,0
+catalogue.reference:0,0,0,"https://eli.li","https://smallandnearlysilent.com"
+catalogue.created_date:"2022-12-07","2022-12-07","2022-12-07","2022-12-07","2022-12-07"
+catalogue:table catalogue
+
+show[catalogue]
\ No newline at end of file