知识管理和协作平台

defclass eb774cc9b1 doc(README): update readme for ENV 5 年之前
.github 073df06617 chore(env): add cljs env 5 年之前
public 8caf2fe452 chore: remove redundant ; 5 年之前
resources 073df06617 chore(env): add cljs env 5 年之前
src 073df06617 chore(env): add cljs env 5 年之前
.gitignore df1043be0a feat(dev): update build process 5 年之前
.projectile d73e405b9e Add contents 5 年之前
.stylelintrc.json 7c7ce3d740 refactor: add stylelint processor 5 年之前
CODE_OF_CONDUCT.md a7616ca3d2 docs: add Code of Conduct 5 年之前
Dockerfile 5b4ca742a6 add docker dev environment 5 年之前
LICENSE.md a72ca41c95 fix(license): add exceptions for epl libraries 5 年之前
README.md eb774cc9b1 doc(README): update readme for ENV 5 年之前
deps.edn 073df06617 chore(env): add cljs env 5 年之前
externs.js 1e3a1eff98 fix: add missing externs 5 年之前
gulpfile.js b40b5925f7 refactor: build styles 5 年之前
package.json 249bf680c1 enhance: undo redo use patches instead of full text 5 年之前
postcss.config.js 6c1a1701bb fix: css styles 5 年之前
shadow-cljs.edn 073df06617 chore(env): add cljs env 5 年之前
tailwind.config.js 2db70bdfc4 style: fix notification text theme issue & ui details 5 年之前
tailwind.css 22887860df feat(dev): better support for processing tailwind css 5 年之前
yarn.lock 249bf680c1 enhance: undo redo use patches instead of full text 5 年之前

README.md

Logseq

latest release version License Twitter follow discord total

Contributors Contributors

A local-first, non-linear, outliner notebook for organizing and sharing your personal knowledge base.

Use it to organize your todo list, to write your journals, or to record your unique life.

Why Logseq?

Logseq is a freedom-respecting (and open-source too) platform for knowledge sharing and management. It focuses on privacy, longevity, and user control.

The server will never store or analyze your private notes. Your data are plain text files and we currently support both Markdown and Emacs Org mode (more to be added soon).

In the unlikely event that the website is down or cannot be maintained, your data is, and will always be yours.

Image of logseq

Feature requests

Please go to https://discuss.logseq.com/c/feature-requests/7.

How can I use it?

  1. Make sure you have registered a GitHub account and already created a repository (could be an old one). Currently we only support GitHub, but more sync options (e.g. Gitlab, Dropbox, Google Drive, WebDAV, etc.) will be added soon.

  2. Visit our website https://logseq.com/.

  3. Click the "Login with GitHub" button in the upper-right corner.

  4. Following the on-screen instructions, install Logseq app on your selected repository.

  5. Start writing and have fun!

Credits

Logseq is hugely inspired by Roam Research, Org Mode, Tiddlywiki, Workflowy and Cuekeeper, hats off to all of them!

Logseq is also made possible by the following projects:

Logseq Credits

Learn more


The following is for developers and designers who want to build and run Logseq locally and contribute to this project.

Set up development environment

1. Requirements

2. Compile to JavaScript

git clone https://github.com/logseq/logseq
yarn
yarn watch

3. Open the browser

Open http://localhost:3001.

4. Build a release

ENV=prod yarn release 

ENV: we can release a version for staging or prod. Logseq will read the environment variable from resources/config.edn

Alternative: Docker based development environment

1. Fetch sources

git clone https://github.com/logseq/logseq

2. Build Docker image

cd logseq
docker build -t logseq-docker .

3. Run Docker container

docker run -v $(pwd):/home/logseq/logseq -p 3001:3001 -p 9630:9630 -p 8701:8701 --rm -it logseq-docker /bin/bash

4. Inside the container compile as described above

cd logseq
yarn
yarn watch