Skip to content

semanticdata/logseq-starter-graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

19 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Logseq Starter Graph

A Logseq Starter. Read the blog post. Visit the demo.

✨ Features

  • Optional custom CSS themes.1

πŸ“’ Publish Logseq Graph to GitHub Pages

Here's a step-by-step guide to publish your Logseq graph to GitHub Pages. We recommend using the workflow provided with the project to publish your graph to GitHub Pages. To do so, follow the steps below.

1. Open the Repository Settings

At the top of the repository, click Settings.

repository settings

2. Navigate to the Pages Section

On the left sidebar, click Pages under Code and automation.

source branch

3. Configure GitHub Pages Source to GitHub Actions

Under the Build and deployment section, under Source, change it from Deploy from a branch to GitHub Actions.

source actions

4. Navigate to the Actions Section

At the top of the repository, click Actions.

repository actions

5. Run the Workflow for the First Time

On the left sidebar, click the workflow name (Validate and Publish Logseq Graph to GitHub Pages).

action summary

On the right, click Run workflow, then click on the new Run workflow (blue) button.

action runs

6. Be Patient

⚠ Please be patient.The first time you run the workflow, it will take several minutes to complete. Subsequent runs will be faster.

Take a look at the first run for this repository:

action duration

Over 11 minutes!

But as you can see in the next screenshot, the next time you run the workflow, it will be much faster.

action faster

Just over 1 minute!

7. Use your GitHub Pages website url

Back at the repository landing page, click the βš™ (Gear) icon to edit the repository details.

repository sidebar

Under Website, click Use your GitHub Pages website.

repository details

It will populate the URL field with your own GitHub Pages website address. It should look like https://your-username.github.io/logseq-starter-graph/.

repository url

Note: This is a good time to add a description to your project.

8. Save Changes

Save your changes and take a look at your repository details.

repository details filled

Enjoy using the Logseq Starter Graph!

πŸ”€ Workflows

A breakdown of the workflows used in this project.

Validate βœ…

The validate workflow runs tests on the graph to identify any errors using logseq/graph-validator.

name: Validate Logseq Graph
steps:
  - name: Checkout code
    uses: actions/checkout@v4
  - name: Run graph-validator tests
    uses: logseq/graph-validator@main

Publish πŸ“’

The publish workflow builds and deploys the graph to GitHub Pages using logseq/publish-spa.

name: Publish Logseq Graph
steps:
  - name: Checkout code
    uses: actions/checkout@v4
  - name: Build Logseq graph
    uses: logseq/publish-spa@main
    with:
      output-directory: build # must match path below
  - name: Configure for GitHub Pages
    uses: actions/configure-pages@v5
  - name: Upload artifact
    uses: actions/upload-pages-artifact@v3
    with:
      path: build # must match output-directory above
  - name: Deploy to GitHub Pages
    id: deployment
    uses: actions/deploy-pages@v4

Validate and Publish πŸš€

A workflow that both validates and deploys to GitHub Pages (only after validation passes) is used for this project and looks like this:

name: Validate then Publish Logseq Graph
steps:
  - name: Checkout
    uses: actions/checkout@v4
  - name: Run graph-validator tests
    uses: logseq/graph-validator@main
  - name: Build Logseq graph
    uses: logseq/publish-spa@main
    with:
      output-directory: build # must match path below
      accent-color: indigo
  - name: Configure for GitHub Pages
    uses: actions/configure-pages@v5
  - name: Upload artifact
    uses: actions/upload-pages-artifact@v3
    with:
      path: build # must match output-directory above
  - name: Deploy to GitHub Pages
    id: deployment
    uses: actions/deploy-pages@v4

Β© License

Source code in this repository is available under the MIT License.

Footnotes

  1. Optional custom CSS themes can be adjusted in logseq/config.edn. It includes links to popular themes like: dracula, catppuccin, logseq-bear, logseq-paper, logseq-quattro, logseq-allday and logseq-dev. ↩