logseq/readme.org

45 lines
953 B
Org Mode
Raw Normal View History

2020-04-09 12:42:52 +00:00
* Logseq
2020-04-19 01:34:55 +00:00
A client-only note app which syncs with your github repo.
2019-12-13 08:36:34 +00:00
2020-04-11 13:04:14 +00:00
** Website
https://logseq.com
2019-12-13 08:36:34 +00:00
2020-02-10 02:31:34 +00:00
** Setup
2020-04-09 14:13:53 +00:00
2019-12-13 12:51:26 +00:00
** File directory example
#+BEGIN_SRC shell
tasks.org # the app will extract todos from this file
other_notes.org
other_notes.markdown
...
#+END_SRC
2020-02-10 02:23:00 +00:00
** Hidden directories or files
#+BEGIN_SRC shell
touch .hidden # root directory
# add directories or files like:
# /directory
# file
# /directory/file
#+END_SRC
2019-12-13 12:51:26 +00:00
2019-12-13 12:49:32 +00:00
** Deploy to your now.sh instance
#+BEGIN_SRC shell
./deploy.sh
#+END_SRC
2019-12-13 08:36:34 +00:00
** Develop
#+BEGIN_SRC shell
yarn install
yarn watch
open http://localhost:3000
#+END_SRC
*** Or if you are using Emacs
1. M-x cider-jack-in
2020-02-10 02:23:40 +00:00
2. type ~(cljs-repl)~ in the repl
2020-07-07 14:12:58 +00:00
*** Notes
1. deps should be synced between the two files: ~project.clj~ and ~deps.edn~.
~project.clj~ is for dokku deployment.