Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/super3/tolog
https://github.com/super3/tolog
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/super3/tolog
- Owner: super3
- License: mit
- Created: 2024-12-16T15:11:16.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-25T18:12:12.000Z (27 days ago)
- Last Synced: 2024-12-25T19:18:39.194Z (27 days ago)
- Language: Vue
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Memly
Memly is an open-source note-taking application that uses markdown files for storing notes, similar to Logseq. It provides a clean and intuitive interface for managing your personal knowledge base.
## Features
- Markdown-based note-taking
- Local file storage
- Bidirectional linking
- Daily notes## Development
### Icon Generation
To generate the application icons:1. The source icon is an SVG file located at `src/assets/journal-icon.svg`
2. Generate PNG from SVG: `bash convert -background none src/assets/journal-icon.svg public/icon.png`Note: Requires ImageMagick to be installed (`brew install imagemagick` on macOS).
### Prerequisites
- Node.js (v16 or higher)
- npm or yarn### Getting Started
1. Clone the repository
2. Install dependencies:
```bash
npm install
```
3. Start the development server:
```bash
npm run dev
```
This will start both the Vite dev server and Electron app in development mode.