standardnotes を使ってみた。
3行まとめ
- マークダウンも使えない。 -最新版では、ファイルの添付ができない。
- 無料版StandardNotesは機能制限が辛すぎる。
という地獄なので、基本的にはないな。って感じ
サーバー立てても意味がない。
次のようになる。
Dockerやってみた記録。
services: server: image: standardnotes/server env_file: env container_name: server_self_hosted restart: unless-stopped ports: - 3000:3000 - 3125:3104 volumes: - ../storage/logs:/var/lib/server/logs - ../storage/uploads:/opt/server/packages/files/dist/uploads networks: - standardnotes_self_hosted localstack: image: localstack/localstack:1.3 container_name: localstack_self_hosted expose: - 4566 restart: unless-stopped environment: - SERVICES=sns,sqs - HOSTNAME_EXTERNAL=localstack - LS_LOG=warn volumes: - ./localstack_bootstrap.sh:/etc/localstack/init/ready.d/localstack_bootstrap.sh networks: - standardnotes_self_hosted db: image: mysql:8 container_name: db_self_hosted env_file: env expose: - 3306 restart: unless-stopped command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_general_ci volumes: - ../storage/data/mysql:/var/lib/mysql - ../storage/data/import:/docker-entrypoint-initdb.d networks: - standardnotes_self_hosted cache: image: redis:6.0-alpine container_name: cache_self_hosted volumes: - ../storage/data/redis/:/data expose: - 6379 restart: unless-stopped networks: - standardnotes_self_hosted networks: standardnotes_self_hosted: name: standardnotes_self_hosted
結論
いまのStandardnotes はOSSライセンスだけど、自由に全機能が使えるわけではない
legacy 化されたものなら昔のように行ける。とおもう https://github.com/standardnotes/self-hosted
StandardNotesはSelf-Hostingでよく見かけたアプリケーションだけど、それなりに便利だと記事があったので試したが、最新版はもうだめですね。サーバー作る意味がないですね。