Initial commit
This commit is contained in:
commit
b967b222b1
11 changed files with 158 additions and 0 deletions
3
.gitattributes
vendored
Normal file
3
.gitattributes
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
*.md linguist-detectable
|
||||||
|
*.md linguist-language=Markdown
|
||||||
|
*.md linguist-documentation=false
|
27
.github/workflows/publish.yaml
vendored
Normal file
27
.github/workflows/publish.yaml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
name: "Publish"
|
||||||
|
on:
|
||||||
|
# Run only when pushing to master branch
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
neuron:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Download neuron
|
||||||
|
run: |
|
||||||
|
curl --silent https://api.github.com/repos/srid/neuron/actions/artifacts \
|
||||||
|
| jq 'first(.artifacts | .[] | select(.name == "neuron-bundle-linux") | .archive_download_url)' -r \
|
||||||
|
| xargs curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" --silent -L -o neuron-bundle-linux.zip
|
||||||
|
unzip neuron-bundle-linux.zip
|
||||||
|
chmod +x neuron
|
||||||
|
./neuron --version # This extracts the bundle; should take a while
|
||||||
|
- name: Build neuron site 🔧
|
||||||
|
run: |
|
||||||
|
./neuron -d $PWD rib
|
||||||
|
- name: Deploy to gh-pages 🚀
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: .neuron/output/
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.neuron
|
1
.nojekyll
Normal file
1
.nojekyll
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
30
.vscode/extensions.json
vendored
Normal file
30
.vscode/extensions.json
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=827846
|
||||||
|
// for the documentation about the extensions.json format
|
||||||
|
"recommendations": [
|
||||||
|
// Main markdown support
|
||||||
|
"yzhang.markdown-all-in-one",
|
||||||
|
|
||||||
|
// Zettelkasten wiki-links, backlinks, etc.
|
||||||
|
"svsool.markdown-memo",
|
||||||
|
|
||||||
|
// Graph view
|
||||||
|
// Disabled until https://github.com/tchayen/markdown-links/issues/28 is done
|
||||||
|
// "tchayen.markdown-links",
|
||||||
|
|
||||||
|
// For expanding title in daily note
|
||||||
|
"gruntfuggly.auto-snippet",
|
||||||
|
|
||||||
|
// Commands for bold, italic, etc.
|
||||||
|
"mdickin.markdown-shortcuts",
|
||||||
|
|
||||||
|
// Goodies:
|
||||||
|
// - Checkboxes
|
||||||
|
"bierner.markdown-checkbox",
|
||||||
|
// - Footnote
|
||||||
|
"houkanshan.vscode-markdown-footnote",
|
||||||
|
|
||||||
|
// Language - spell checker
|
||||||
|
"streetsidesoftware.code-spell-checker"
|
||||||
|
]
|
||||||
|
}
|
23
.vscode/settings.json
vendored
Normal file
23
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
// Avoid having to explicitly save notes
|
||||||
|
"files.autoSave": "afterDelay",
|
||||||
|
|
||||||
|
// Minimap is not useful for Markdown notes
|
||||||
|
"editor.minimap.enabled": false,
|
||||||
|
|
||||||
|
// Generally note files are not opened in duplicate tabs.
|
||||||
|
// This also enables you to navigate to already open note in other split pane
|
||||||
|
"workbench.editor.revealIfOpen": true,
|
||||||
|
|
||||||
|
// For those that use daily notes, via vscode-memo extension
|
||||||
|
"autoSnippet.snippets": [
|
||||||
|
{
|
||||||
|
"pattern": "**/\\d{4}-\\d{2}-\\d{2}.md",
|
||||||
|
"snippet": "daily"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
// If use Git, these might be interesting:
|
||||||
|
// "git.autofetch": true,
|
||||||
|
// "git.postCommitCommand": "push"
|
||||||
|
}
|
32
README.md
Normal file
32
README.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# How to publish your own [neuron] site
|
||||||
|
|
||||||
|
[neuron] is a note-taking app optimized for publishing, and you can use this template repository to get started with [publishing](https://neuron.zettel.page/778816d3.html) your own neuron site that looks like [one of these][examples].
|
||||||
|
|
||||||
|
- Go to <https://github.com/srid/neuron-template/generate>
|
||||||
|
- Give your new repository a name, say `mynotes`
|
||||||
|
- Select "*Include all branches*" ([necessary to get the site to publish](https://stackoverflow.com/a/47368231/55246))
|
||||||
|
- Click "Create repository from template"
|
||||||
|
- Note: if you are on the free GitHub plan, your repository should be public for GitHub to publish it.
|
||||||
|
|
||||||
|
GitHub will now build the site and serve it at: `https://<yourgithubusername>.github.io/mynotes/`.
|
||||||
|
|
||||||
|
For more information, see [neuron documentation][neuron] as well as the [GitHub Pages guide](https://help.github.com/en/github/working-with-github-pages).
|
||||||
|
|
||||||
|
## Set your site metadata
|
||||||
|
|
||||||
|
- In your new repository, edit the `neuron.dhall` file to set your site configuration (such as title, author, color theme) to suitable values.
|
||||||
|
|
||||||
|
## How to edit and add notes
|
||||||
|
|
||||||
|
Assuming you have changed the `editUrl` configuration in `neuron.dhall` (see the above section), you can simply click the "edit" icon on the published site to edit any note (see [Editing files in your repository](https://help.github.com/en/github/managing-files-in-a-repository/editing-files-in-your-repository) and [Creating new files](https://help.github.com/en/github/managing-files-in-a-repository/creating-new-files)). On every change, your site should eventually rebuild.
|
||||||
|
|
||||||
|
To understand how linking works, read [the neuron guide on Linking][linking].
|
||||||
|
|
||||||
|
For other ways to edit your notes (editors, web interface), see the [neuron guide][create]. In particular, [Cerveau](https://www.cerveau.app/) is the easiest way to edit your notes on the go.
|
||||||
|
|
||||||
|
Questions? Checkout the [[faq]].
|
||||||
|
|
||||||
|
[neuron]: https://neuron.zettel.page/
|
||||||
|
[examples]: https://neuron.zettel.page/examples.html
|
||||||
|
[linking]: https://neuron.zettel.page/linking.html
|
||||||
|
[create]: https://neuron.zettel.page/create.html
|
19
faq.md
Normal file
19
faq.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
tags: [other]
|
||||||
|
---
|
||||||
|
|
||||||
|
# FAQ
|
||||||
|
|
||||||
|
How long does it take for the site to update?
|
||||||
|
: The [GitHub Actions](https://github.com/features/actions) build itself takes about ~25 seconds to run. It is generally expected for your site to update around that duration, and take no more than a minute.
|
||||||
|
|
||||||
|
Which environment is used to build and deploy the site?
|
||||||
|
: From the [Actions workflow file](https://github.com/srid/neuron-template/blob/master/.github/workflows/publish.yaml), it can be seen that we install [neuron](https://neuron.zettel.page/) using GitHub's artifact storage in Srid's repo [srid/neuron](https://github.com/srid/neuron), as well as use the [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) action to push the built site to the `gh-pages` branch, that in turn gets deployed to GitHub's servers.
|
||||||
|
|
||||||
|
Can I use my own domain name?
|
||||||
|
: Yes, you can [set the CNAME in publish.yaml][cname].
|
||||||
|
|
||||||
|
How can private repositories be published?
|
||||||
|
: You will need a GitHub paid plan to publish private repositories. Public repositories on the other hand can be published in the GitHub free plan. [Cerveau](https://www.cerveau.app/)'s Premium Plan, when it is ready, will be able to publish public and private repositories.
|
||||||
|
|
||||||
|
[cname]: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-add-cname-file-cname
|
13
index.md
Normal file
13
index.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
tags: [home]
|
||||||
|
---
|
||||||
|
|
||||||
|
# Neuron Template
|
||||||
|
|
||||||
|
You are viewing a template site, generated from [neuron-template](https://github.com/srid/neuron-template) and published by [neuron](https://neuron.zettel.page/). [GitHub Pages](https://pages.github.com/) is used to automatically publish this site every time the underlying Git repository gets updated.
|
||||||
|
|
||||||
|
Get started by reading [[[README]]].
|
||||||
|
|
||||||
|
Other pages on this zettelkasten (this demonstrates how to use [link queries](https://neuron.zettel.page/link-query.html)):
|
||||||
|
|
||||||
|
[[[z:zettels?tag=other]]]
|
8
neuron.dhall
Normal file
8
neuron.dhall
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ siteTitle = "Neuron Template"
|
||||||
|
, author = Some "John Doe"
|
||||||
|
, siteBaseUrl = Some "https://srid.github.io/neuron-template"
|
||||||
|
-- List of theme colors: https://neuron.zettel.page/2014601.html
|
||||||
|
, theme = "teal"
|
||||||
|
-- This is used in the "edit" button
|
||||||
|
, editUrl = Some "https://github.com/srid/neuron-template/edit/master/"
|
||||||
|
}
|
1
static/README.md
Normal file
1
static/README.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Put your [static files](https://neuron.zettel.page/2016401.html) (images, pdf, etc.) here.
|
Loading…
Add table
Reference in a new issue