mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
Compare commits
3 commits
a3f792944c
...
809965e81c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
809965e81c | ||
|
|
b855ccffcb | ||
|
|
32dd4c3d08 |
3 changed files with 20 additions and 10 deletions
|
|
@ -3,7 +3,7 @@
|
|||
[](https://github.com/usetrmnl/byos_laravel/actions/workflows/test.yml)
|
||||
|
||||
TRMNL BYOS Laravel is a self-hostable implementation of a TRMNL server, built with Laravel.
|
||||
It allows you to manage TRMNL devices, generate screens using **native plugins** (Screens API, Markup), **recipes** (100+ from the [OSS community catalog](https://bnussbau.github.io/trmnl-recipe-catalog/), ~500 from the [TRMNL catalog](https://usetrmnl.com/recipes), or your own), or the **API**, and can also act as a **proxy** for the native cloud service (Core). With over 35k downloads and 150+ stars, it’s the most popular community-driven BYOS.
|
||||
It allows you to manage TRMNL devices, generate screens using **native plugins** (Screens API, Markup), **recipes** (120+ from the [OSS community catalog](https://bnussbau.github.io/trmnl-recipe-catalog/), 600+ from the [TRMNL catalog](https://usetrmnl.com/recipes), or your own), or the **API**, and can also act as a **proxy** for the native cloud service (Core). With over 40k downloads and 160+ stars, it’s the most popular community-driven BYOS.
|
||||
|
||||

|
||||

|
||||
|
|
|
|||
14
composer.lock
generated
14
composer.lock
generated
|
|
@ -9325,16 +9325,16 @@
|
|||
},
|
||||
{
|
||||
"name": "pestphp/pest",
|
||||
"version": "v4.3.0",
|
||||
"version": "v4.3.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pestphp/pest.git",
|
||||
"reference": "e86bec3e68f1874c112ca782fb9db1333f3fe7ab"
|
||||
"reference": "bc57a84e77afd4544ff9643a6858f68d05aeab96"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/pestphp/pest/zipball/e86bec3e68f1874c112ca782fb9db1333f3fe7ab",
|
||||
"reference": "e86bec3e68f1874c112ca782fb9db1333f3fe7ab",
|
||||
"url": "https://api.github.com/repos/pestphp/pest/zipball/bc57a84e77afd4544ff9643a6858f68d05aeab96",
|
||||
"reference": "bc57a84e77afd4544ff9643a6858f68d05aeab96",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
|
@ -9347,7 +9347,7 @@
|
|||
"pestphp/pest-plugin-profanity": "^4.2.1",
|
||||
"php": "^8.3.0",
|
||||
"phpunit/phpunit": "^12.5.4",
|
||||
"symfony/process": "^7.4.0|^8.0.0"
|
||||
"symfony/process": "^7.4.3|^8.0.0"
|
||||
},
|
||||
"conflict": {
|
||||
"filp/whoops": "<2.18.3",
|
||||
|
|
@ -9425,7 +9425,7 @@
|
|||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/pestphp/pest/issues",
|
||||
"source": "https://github.com/pestphp/pest/tree/v4.3.0"
|
||||
"source": "https://github.com/pestphp/pest/tree/v4.3.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
|
@ -9437,7 +9437,7 @@
|
|||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-30T19:48:33+00:00"
|
||||
"time": "2026-01-04T16:29:59+00:00"
|
||||
},
|
||||
{
|
||||
"name": "pestphp/pest-plugin",
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
import { EditorView, lineNumbers, keymap } from '@codemirror/view';
|
||||
import { ViewPlugin } from '@codemirror/view';
|
||||
import { indentWithTab } from '@codemirror/commands';
|
||||
import { indentWithTab, selectAll } from '@codemirror/commands';
|
||||
import { foldGutter, foldKeymap } from '@codemirror/language';
|
||||
import { history, historyKeymap } from '@codemirror/commands';
|
||||
import { searchKeymap } from '@codemirror/search';
|
||||
import { html } from '@codemirror/lang-html';
|
||||
import { javascript } from '@codemirror/lang-javascript';
|
||||
import { json } from '@codemirror/lang-json';
|
||||
|
|
@ -154,7 +155,16 @@ export function createCodeMirror(element, options = {}) {
|
|||
createResizePlugin(),
|
||||
...(Array.isArray(languageSupport) ? languageSupport : [languageSupport]),
|
||||
...themeSupport,
|
||||
keymap.of([indentWithTab, ...foldKeymap, ...historyKeymap]),
|
||||
keymap.of([
|
||||
indentWithTab,
|
||||
...foldKeymap,
|
||||
...historyKeymap,
|
||||
...searchKeymap,
|
||||
{
|
||||
key: 'Mod-a',
|
||||
run: selectAll,
|
||||
},
|
||||
]),
|
||||
EditorView.theme({
|
||||
'&': {
|
||||
fontSize: '14px',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue