Skip to content

Commit

Permalink
fix(actions): add ubuntu dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sicheng1806 committed Nov 28, 2024
1 parent 3d39f07 commit 45c8cb7
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v4
- name: Install Ubuntu dependencies
run: |
sudo apt install -y libgtk-3-dev
- name: Rust tests and Generate code coverage
run: |
cargo check
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

`Spire`是一个跨平台的[Mastodon](https://github.com/mastodon/mastodon)的GUI界面程序。

## ubuntu 动态库依赖

```bash
sudo apt install -y libgtk-3-dev
```
## 开发指南

此项目使用[dioxus](https://github.com/DioxusLabs/dioxus)+[tailwindcss](https://github.com/tailwindlabs/tailwindcss)的开发框架。
Expand Down
36 changes: 36 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,40 @@ module.exports = {
extend: {},
},
plugins: [require('daisyui'),],
daisyui: {
themes: [
"light",
"dark",
"cupcake",
"bumblebee",
"emerald",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"aqua",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter",
"dim",
"nord",
"sunset",
],
},
}

0 comments on commit 45c8cb7

Please sign in to comment.