Skip to content

Commit

Permalink
Quartz sync: Jan 7, 2024, 4:18 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed Jan 7, 2024
1 parent 37a54d5 commit 4f7d5d9
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 13 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy Quartz site to GitHub Pages

on:
push:
branches:
- main

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for git info
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Build Quartz
run: npx quartz build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: public

deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
29 changes: 16 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
# Quartz v4
# OSS@DBF

> [One] who works with the door open gets all kinds of interruptions, but [they] also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming
Welcome to our developer knowledge base and project overview!

Quartz is a set of tools that helps you publish your [digital garden](https://jzhao.xyz/posts/networked-thought) and notes as a website for free.
Quartz v4 features a from-the-ground rewrite focusing on end-user extensibility and ease-of-use.
## Goals of this Project

**If you are looking for Quartz v3, you can find it on the [`hugo` branch](https://github.com/jackyzha0/quartz/tree/hugo).**
- Sharing practical know-how with interested internal and external parties to reduce knowledge silos
- Promoting open-source projects developed at our department (e.g., KlickerUZH) and at our university
- Enabling our developers to work on topics they are interested in and to publish their learnings

🔗 Read the documentation and get started: https://quartz.jzhao.xyz/
## About the Department of Banking and Finance, UZH

[Join the Discord Community](https://discord.gg/cRFFHYye7t)
The Department of Banking and Finance (DBF) belongs to the leading departments in Europe for topics related to banking, finance, and insurance. It was founded in 1968 by the governing council of the canton of Zurich as "Institut für schweizerisches Bankwesen" (Swiss Banking Institute) as a part of the university of Zurich.

## Sponsors
> https://www.bf.uzh.ch/en/department/about-us.html
<p align="center">
<a href="https://github.com/sponsors/jackyzha0">
<img src="https://cdn.jsdelivr.net/gh/jackyzha0/jackyzha0/sponsorkit/sponsors.svg" />
</a>
</p>
With more than 27'000 students, the University of Zurich is Switzerland's largest university. Founded in the year 1833, UZH was Europe's first university to be established by a democratic political system. Made up of seven faculties covering some 100 different subject areas, the University offers a wide variety of Bachelor's, Master's and PhD programs.

> https://www.uzh.ch/cmsssl/en/explore/portrait/profile.html
## License

This repository is available under a permissive MIT license. Our projects are licensed separately and as stated within the corresponding repositories.
Empty file added content/cloud/docker.md
Empty file.
Empty file added content/cloud/kubernetes.md
Empty file.
Empty file added content/llm/langchain.md
Empty file.
Empty file added content/llm/llamaindex.md
Empty file.
Empty file.
Empty file added content/web/t3-stack.md
Empty file.
Empty file added content/web/three-js.md
Empty file.
Empty file added content/web/typescript.md
Empty file.

0 comments on commit 4f7d5d9

Please sign in to comment.