Giter Club home page Giter Club logo

siyuan-community / siyuan Goto Github PK

View Code? Open in Web Editor NEW
137.0 1.0 19.0 233.29 MB

A privacy-first, self-hosted, fully open source personal knowledge management software, written in typescript and golang.

Home Page: https://b3log.org/siyuan

License: GNU Affero General Public License v3.0

Shell 0.04% JavaScript 9.67% Python 0.06% Go 28.52% TypeScript 56.94% CSS 0.22% HTML 1.46% Smarty 0.12% NSIS 0.04% Batchfile 0.02% Dockerfile 0.02% SCSS 2.89% PowerShell 0.02%

siyuan's Introduction

SiYuan
Refactor your thinking






Twitter Follow

SiYuan - A privacy-first personal knowledge management software | Product Hunt

中文

💡 Introduction

SiYuan is a privacy-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG.

Welcome to SiYuan English Discussion Forum to learn more.

feature0.png

feature51.png

🔮 Features

Most features are free, even for commercial use.

  • Content block
    • Block-level reference and two-way links
    • Custom attributes
    • SQL query embed
    • Protocol siyuan://
  • Editor
    • Block-style
    • Markdown WYSIWYG
    • List outline
    • Block zoom-in
    • Million-word large document editing
    • Mathematical formulas, charts, flowcharts, Gantt charts, timing charts, staffs, etc.
    • Web clipping
    • PDF Annotation link
  • Export
    • Block ref and embed
    • Standard Markdown with assets
    • PDF, Word and HTML
    • Copy to WeChat MP, Zhihu and Yuque
  • Database
    • Table view
  • Flashcard spaced repetition
  • AI writing and Q/A chat via OpenAI API
  • Tesseract OCR
  • Multi-tab, drag and drop to split screen
  • Template snippet
  • JavaScript/CSS snippet
  • Android/iOS App
  • Docker deployment
  • API
  • Community marketplace

Some features are only available to paid members, for more details please refer to Pricing.

🏗️ Architecture design and open source ecosystem

SiYuan Arch

Project Description Forks Stars
lute Editor engine GitHub forks GitHub Repo stars
chrome Chrome/Edge extension GitHub forks GitHub Repo stars
bazaar Community marketplace GitHub forks GitHub Repo stars
dejavu Data repo GitHub forks GitHub Repo stars
petal Plugin API GitHub forks GitHub Repo stars
android Android App GitHub forks GitHub Repo stars
ios iOS App GitHub forks GitHub Repo stars
riff Spaced repetition GitHub forks GitHub Repo stars

🌟 Star History

Star History Chart

🗺️ Roadmap

🚀 Download Setup

It is recommended to give priority to installing through the application market on the desktop and mobile, so that you can upgrade the version with one click in the future.

App Market

Mobile:

Desktop:

Docker Hosting

Docker Deployment

Overview

The easiest way to serve SiYuan on a server is to deploy it through Docker.

File structure

The overall program is located under /opt/siyuan/, which is basically the structure under the resources folder of the Electron installation package:

  • appearance: icon, theme, languages
  • guide: user guide document
  • stage: interface and static resources
  • kernel: kernel program

Entrypoint

The entry point is set when building the Docker image: ENTRYPOINT ["/opt/siyuan/kernel" ], use docker run b3log/siyuan with parameters to start:

  • --workspace: Specifies the workspace folder path, mounted to the container via -v on the host
  • --accessAuthCode: Specifies the access authorization code

More parameters can refer to --help. The following is an example of a startup command:

docker run -d -v workspace_dir_host:workspace_dir_container -p 6806:6806 b3log/siyuan --workspace=workspace_dir_container --accessAuthCode=xxx
  • workspace_dir_host: The workspace folder path on the host
  • workspace_dir_container: The path of the workspace folder in the container, which is the same as specified in --workspace
  • accessAuthCode: Access authorization code, please be sure to modify, otherwise anyone can read and write your data

To simplify, it is recommended to configure the workspace folder path to be consistent on the host and container, such as: workspace_dir_host and workspace_dir_container are configured as /siyuan/workspace, the corresponding startup commands is:

docker run -d -v /siyuan/workspace:/siyuan/workspace -p 6806:6806 -u 1000:1000 b3log/siyuan --workspace=/siyuan/workspace/ --accessAuthCode=xxx

Alternatively, see below for an example Docker Compose file:

version: "3.9"
services:
  main:
    image: b3log/siyuan
    command: ['--workspace=/siyuan/workspace/', '--accessAuthCode=${AuthCode}']
    user: '1000:1000'
    ports:
      - 6806:6806
    volumes:
      - /siyuan/workspace:/siyuan/workspace
    restart: unless-stopped
    environment:
      # A list of time zone identifiers can be found at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
      - TZ=${TimeZone}

User permissions

In the image, the normal user siyuan (uid 1000/gid 1000) created by default is used to start the kernel process. Therefore, when the host creates a workspace folder, please pay attention to setting the user group of the folder: chown -R 1000:1000 /siyuan/workspace. The parameter -u 1000:1000 is required when starting the container.

Hidden port

Use NGINX reverse proxy to hide port 6806, please note:

  • Configure WebSocket reverse proxy /ws

Note

  • Be sure to confirm the correctness of the mounted volume, otherwise the data will be lost after the container is deleted
  • Do not use URL rewriting for redirection, otherwise there may be problems with authentication, it is recommended to configure a reverse proxy

Limitations

  • Does not support desktop and mobile application connections, only supports use on browsers
  • Export to PDF, HTML and Word formats is not supported
  • Import Markdown file is not supported

Installation Package

Insider Preview

We release insider preview before major updates, please visit https://github.com/siyuan-note/insider.

🏘️ Community

🛠️ Development Guide

See Development Guide.

❓ FAQ

How does SiYuan store data?

The data is saved in the workspace folder, in the workspace data folder:

  • assets is used to save all inserted assets
  • emojis is used to save emoji images
  • snippets is used to save code snippets
  • storage is used to save query conditions, layouts and flashcards, etc.
  • templates is used to save template snippets
  • widgets is used to save widgets
  • plugins is used to save plugins
  • public is used to save public data
  • The rest of the folders are the notebook folders created by the user, files with the suffix of .sy in the notebook folder are used to save the document data, and the data format is JSON

Does it support data synchronization through a third-party sync disk?

Data synchronization through third-party synchronization disks is not supported, otherwise data may be corrupted.

Although it does not support third-party sync disks, it supports connect with third-party cloud storage (Member's privileges).

In addition, you can also consider manually exporting and importing data to achieve data synchronization:

  • Desktop: Settings - Export - Export Data / Import Data
  • Mobile: Right column - About - Export Data / Import Data

Is SiYuan open source?

SiYuan is completely open source, and contributions are welcome:

For more details, please refer to Development Guide.

How to upgrade to a new version?

  • If installed via app store, please update via app store
  • If it is installed through the installation package on the desktop, you can open the option of Settings - About - Automatically download update installation package, so that SiYuan will automatically download The latest version of the installation package and prompts to install
  • If it is installed by manual installation package, please download the installation package again to install

You can Check update in Settings - About - Current Version, or pay attention to Official Download or GitHub Releases to get the new version.

Is there any note for deleting docs?

After deletion, the doc will not appear in the operating system's recycle bin, but will be deleted directly. When deleted, SiYuan will generate data history.

How can I just wrap and not start a new paragraph?

Please use Shift+Enter.

What if some blocks (such as paragraph blocks in list items) cannot find the block icon?

The first sub-block under the list item is the block icon omitted. You can move the cursor into this block and trigger its block menu with Ctrl+/ .

How to share notes?

  • Share document to Liandi
  • Export and import .sy.zip package
  • Via network hosting
  • Export and import Markdown
  • Export Preview to copy to third-party online services

What should I do if the data repo key is lost?

  • If the data repo key is correctly initialized on multiple devices before, the key is the same on all devices and can be set in Settings - About - Data repo key - Copy key string retrieve

  • If it has not been configured correctly before (for example, the keys on multiple devices are inconsistent) or all devices are unavailable and the key string cannot be obtained, you can reset the key by following the steps below:

    1. Manually back up the data, you can use Export Data or directly copy the workspace/data/ folder on the file system
    2. Settings - About - Data rep key - Reset data repo
    3. Reinitialize the data repo key. After initializing the key on one device, other devices import the key
    4. The cloud uses the new synchronization directory, the old synchronization directory is no longer available and can be deleted
    5. The existing cloud snapshots are no longer available and can be deleted

Do I need to pay for it?

Most features are free, even for commercial use.

Member's privileges can only be used after payment, please refer to Pricing.

🙏 Acknowledgement

The birth of SiYuan is inseparable from many open source projects and contributors, please refer to the project source code kernel/go.mod, app/package.json and project homepage.

The growth of SiYuan is inseparable from user feedback and promotion, thank you for everyone's help to SiYuan ❤️

Contributors

Welcome to join us and contribute code to SiYuan together.

siyuan's People

Contributors

2234839 avatar 88250 avatar acoez avatar cijiugechu avatar debbbbie avatar dependabot[bot] avatar eulores avatar iamqiz avatar java4candy avatar kecrily avatar lindalinya avatar mdzz2048 avatar meteor199 avatar mingpepe avatar nekrondev avatar pinghe avatar reverier-xu avatar sinemark2020 avatar soltus avatar ssfdust avatar tcotc avatar tengfei-xy avatar terwer avatar tinkmingking avatar vanessa219 avatar yb6b avatar zsxsoft avatar zuoez02 avatar zuoqiu-yingyi avatar zxhd863943427 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

siyuan's Issues

思源社区版不能加载集市的插件列表,官方版本可以加载

Is there an existing issue for this?

  • I have searched the existing issues

Can the issue be reproduced with the default theme (daylight/midnight)?

  • I was able to reproduce the issue with the default theme

Could the issue be due to extensions?

  • I've ruled out the possibility that the extension is causing the problem.

Describe the problem

思源社区版不能加载集市的插件列表,官方版本可以加载

Expected result

思源社区版能加载集市的插件列表

Screenshot or screen recording presentation

No response

Version environment

- Version: 最新
- Operating System: Windows
- Browser (if used):

Log file

xx

More information

No response

构建好 docker 镜像后,运行报错

Is there an existing issue for this?

  • I have searched the existing issues

Can the issue be reproduced with the default theme (daylight/midnight)?

  • I was able to reproduce the issue with the default theme

Could the issue be due to extensions?

  • I've ruled out the possibility that the extension is causing the problem.

Describe the problem

我使用 dockerfile 构建镜像之后,使用这样的命令运行容器

docker run -d \
  -v /share/CACHEDEV1_DATA/Container/siyuan-ce:/siyuan/workspace \
  --network host \
  -u $(id -u):$(id -g) \
  --name siyuan-ce \
  siyuan-ce:2.10.6 \
  --workspace=/siyuan/workspace/

然后日志中出现了这样的报错

logging.go:159: PANIC RECOVERED: runtime error: invalid memory address or nil pointer dereference

Expected result

期待解决方案

Screenshot or screen recording presentation

No response

Version environment

- Version:  2.10.6
- Operating System: qnap (Linux qnap 5.10.60-qnap)
- Browser (if used): edge

Log file

I 2023/09/26 09:41:49 working.go:116: 
      ___                                   ___           ___           ___
     /  /\        ___           ___        /__/\         /  /\         /__/\
    /  /:/_      /  /\         /__/|       \  \:\       /  /::\        \  \:\
   /  /:/ /\    /  /:/        |  |:|        \  \:\     /  /:/\:\        \  \:\
  /  /:/ /::\  /__/::\        |  |:|    ___  \  \:\   /  /:/~/::\   _____\__\:\
 /__/:/ /:/\:\ \__\/\:\__   __|__|:|   /__/\  \__\:\ /__/:/ /:/\:\ /__/::::::::\
 \  \:\/:/~/:/    \  \:\/\ /__/::::\   \  \:\ /  /:/ \  \:\/:/__\/ \  \:\~~\~~\/
  \  \::/ /:/      \__\::/    ~\~~\:\   \  \:\  /:/   \  \::/       \  \:\  ~~~
   \__\/ /:/       /__/:/       \  \:\   \  \:\/:/     \  \:\        \  \:\
     /__/:/        \__\/         \__\/    \  \::/       \  \:\        \  \:\
     \__\/                                 \__\/         \__\/         \__\/
I 2023/09/26 09:41:49 runtime.go:74: kernel is booting:
    * ver [2.10.6]
    * arch [amd64]
    * os [alpine]
    * pid [1]
    * runtime mode [prod]
    * working directory [/opt/siyuan]
    * read only [false]
    * container [docker]
    * database [ver=20220501]
    * workspace directory [/siyuan/workspace/]
D 2023/09/26 09:41:49 conf.go:132: check device locale failed [detect: not detected], using default language [en_US]
I 2023/09/26 09:41:49 runtime.go:128: use network proxy [system]
I 2023/09/26 09:41:49 serve.go:119: kernel [pid=1] http server [0.0.0.0:6806] is booting
I 2023/09/26 09:41:50 database.go:89: the database structure is changed, rebuilding database...
I 2023/09/26 09:41:50 database.go:109: reinitialized database [/siyuan/workspace/temp/siyuan.db]
I 2023/09/26 09:41:50 conf.go:710: database size [4.1 kB], tree/block count [0/0]
I 2023/09/26 09:41:50 working.go:154: kernel booted
E 2023/09/26 09:41:50 logging.go:159: PANIC RECOVERED: runtime error: invalid memory address or nil pointer dereference
        /usr/local/go/src/runtime/panic.go:914 (0x43d53e)
/usr/local/go/src/runtime/panic.go:261 (0x454c97)
/usr/local/go/src/runtime/signal_unix.go:861 (0x454c65)
/go/src/github.com/siyuan-note/siyuan/kernel/model/cloud_service.go:229 (0x1a3d41b)
/usr/local/go/src/runtime/asm_amd64.s:1650 (0x4740c0)

I 2023/09/26 09:41:50 box.go:79: auto stat [trees=0, blocks=0, dataSize=37 kB, assetsSize=0 B]

More information

No response

客户端设置 remote 后导出 PDF 时崩溃

Is there an existing issue for this?

  • I have searched the existing issues

Can the issue be reproduced with the default theme (daylight/midnight)?

  • I was able to reproduce the issue with the default theme

Could the issue be due to extensions?

  • I've ruled out the possibility that the extension is causing the problem.

Describe the problem

在非 127.0.0.1 的地址上运行 kernel,并使用 --args --remote=... 启动本地客户端,在导出 PDF 时崩溃。

是因为在 kernel 中 ExportTempContent 这个 API 直接返回了 localhost 的 URL 给 Electron 前端,而在前端中加载导出窗口时,直接尝试加载该 url,而 kernel 又不在 127.0.0.1 运行,导致崩溃。

image

解决方案的话,可能需要在 kernel 中添加一个环境变量选项,设置 bindAddr 的实际地址,在各种 URL 拼接中不使用 127.0.0.1 而是这个 bindAddr.

eacec1974026727954fefc9a85612eb1 6395f9bd1a91e2aa6e91aa264a7bead7 eacec1974026727954fefc9a85612eb1 446aa51cdd1588716c247dd9bac80210

Expected result

正常启动。

Screenshot or screen recording presentation

No response

Version environment

- Version: 3.0.0
- Operating System: Debian12 & Windows11
- Browser (if used):

Log file

见上文

More information

No response

大佬,可以增加安卓版嘛~

In what scenarios do you need this feature?

大佬,可以增加安卓版嘛~

Describe the optimal solution

大佬,可以增加安卓版嘛~

Describe the candidate solution

大佬,可以增加安卓版嘛~

Other information

No response

Docker image request

In what scenarios do you need this feature?

Docker image request

Describe the optimal solution

Docker image request build with github action

Describe the candidate solution

No response

Other information

No response

prebuilt siyuan-community docker image

In what scenarios do you need this feature?

a prebuilt docker image for siyuan-community

Describe the optimal solution

run github action and build the image release on docker hub and ghcr.io

Describe the candidate solution

No response

Other information

No response

代码块问题

Is there an existing issue for this?

  • I have searched the existing issues

Can the issue be reproduced with the default theme (daylight/midnight)?

  • I was able to reproduce the issue with the default theme

Could the issue be due to extensions?

  • I've ruled out the possibility that the extension is causing the problem.

Describe the problem

两个问题:
1.shell代码块没有高亮
2.!= 显示成了 ≠
image

Expected result

1.希望支持shell代码高亮
2.代码块中不要改变符号显示

Screenshot or screen recording presentation

No response

Version environment

- Version: 2.11.4
- Operating System: MacOS
- Browser (if used):

Log file

More information

No response

iOS package request

In what scenarios do you need this feature?

ios unsigned-ipa package request

Describe the optimal solution

ios unsigned-ipa package request build with github actions

Describe the candidate solution

No response

Other information

No response

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.