openslate
A self-hosted markdown note-taking app. Fast, simple, private. Access your notes from any device.
File Explorer
- bug_report.md
- feature_request.md
- ci.yml
- pull_request_template.md
- 001_initial.sql
- 002_preferences.sql
- 003_fts.sql
- 004_media.sql
- 005_users.sql
- auth.rs
- config.rs
- db.rs
- main.rs
- media.rs
- notes.rs
- preferences.rs
- search.rs
- users.rs
- .env.example
- .gitignore
- Cargo.lock
- Cargo.toml
- api-reference.md
- architecture.md
- deployment.md
- features.md
- index.md
- setup.md
- SUMMARY.md
- cloud-init.yaml
- extensions.json
- favicon.svg
- CommandPalette.svelte
- MarkdownEditor.svelte
- MediaGallery.svelte
- MediaPicker.svelte
- PaneView.svelte
- SettingsModal.svelte
- SplitLayout.svelte
- decorations.ts
- index.ts
- keymap.ts
- slash.ts
- syntax.ts
- theme.ts
- upload.ts
- api.ts
- auth.svelte.ts
- index.ts
- preferences.svelte.ts
- theme.svelte.ts
- theme.test.ts
- types.ts
- +page.svelte
- +layout.server.ts
- +layout.svelte
- +page.svelte
- app.css
- app.d.ts
- app.html
- robots.txt
- .env.example
- .gitignore
- .npmrc
- bun.lock
- package.json
- svelte.config.js
- tsconfig.json
- vite.config.ts
- .dockerignore
- .env.example
- .gitignore
- book.toml
- Caddyfile
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- docker-compose.yml
- docker-entrypoint.sh
- Dockerfile
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
docker
View Details ▼
docker
Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.
docker {{[ps|container ls]}} {{[-a|--all]}}
List all Docker containers (running and stopped):
docker {{[run|container run]}} --name {{container_name}} {{image}}
Start a container from an image, with a custom name:
docker container {{start|stop}} {{container_name}}
Start or stop an existing container:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
sed
View Details ▼
sed
Edit text in a scriptable manner.
See also: `awk`, `ed`.
{{command}} | sed 's/apple/mango/g'
Replace all `apple` (basic `regex`) occurrences with `mango` (basic `regex`) in all input lines and print the result to `stdout`:
{{command}} | sed 's/apple/mango/g'
Replace all `apple` (basic `regex`) occurrences with `mango` (basic `regex`) in all input lines and print the result to `stdout`:
{{command}} | sed 's/apple/mango/g'
[s]ubstitute all occurrences of "apple" with "mango" on all lines, print to `stdout`:
