1
0

Merge branch 'main' of github.com:silverbulletmd/silverbullet

This commit is contained in:
Zef Hemel 2022-09-30 17:00:02 +02:00
commit 7c0a03a272
4 changed files with 45 additions and 1 deletions

7
.gitpod.Dockerfile vendored Normal file
View File

@ -0,0 +1,7 @@
FROM gitpod/workspace-full:latest
RUN bash -c 'VERSION="18" \
&& source $HOME/.nvm/nvm.sh && nvm install $VERSION \
&& nvm use $VERSION && nvm alias default $VERSION'
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix

31
.gitpod.yml Normal file
View File

@ -0,0 +1,31 @@
image:
file: .gitpod.Dockerfile
ports:
- port: 3000
name: Silverbullet
onOpen: open-browser
visibility: public
github:
prebuilds:
master: true
pullRequests: true
tasks:
- name: Setup
init: |
npm install
npm run clean-build
gp sync-done setup
- name: Run Silverbullet server
init: |
gp sync-await setup
mkdir pages
command: npm run server -- ./pages
- name: Run ParcelJS
init: gp sync-await setup
command: npm run watch
- name: Build plugins
init: gp sync-await setup
command: npm run plugs

View File

@ -37,6 +37,9 @@ Once downloaded and booted, SB will print out a URL to open SB in your browser (
#protip: If you have a PWA enabled browser (like any browser based on Chromium) hit that little button right of the location bar to install SB, and give it its own window frame (sans location bar) and desktop/dock icon. At last the PWA has found its killer app.
## Developing Silver Bullet
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/silverbulletmd/silverbullet)
Silver Bullet is written in [TypeScript](https://www.typescriptlang.org/) and built on top of the excellent [CodeMirror 6](https://codemirror.net/) editor component. Additional UI is built using React.js. [ParcelJS](https://parceljs.org/) is used to build both the front-end and back-end bundles. The server backend runs as a HTTP server on node.js using express.
This repo is a monorepo using npm's "workspaces" feature. It consists of a number of npm packages under `packages`.

View File

@ -7,6 +7,7 @@ import {
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useEffect, useState } from "react";
import { Notification } from "../types";
import { isMacLike } from "../../common/util";
function prettyName(s: string | undefined): string {
if (!s) {
@ -40,6 +41,8 @@ export function TopBar({
}) {
const [theme, setTheme] = useState<string>(localStorage.theme ?? "light");
const isMac = isMacLike();
return (
<div id="sb-top" onClick={onClick}>
{lhs}
@ -83,7 +86,7 @@ export function TopBar({
onActionClick();
e.stopPropagation();
}}
title="Open the command palette"
title={"Open the command palette (" + (isMac ? "Cmd" : "Ctrl") + "+/)"}
>
<FontAwesomeIcon icon={faRunning} />
</button>