mirror of https://github.com/bastienwirtz/homer
Remove config.yml from versionning.
parent
b9c5fcf085
commit
e11427508a
|
@ -19,3 +19,6 @@ yarn-error.log*
|
||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?
|
*.sw?
|
||||||
|
|
||||||
|
# App configuration
|
||||||
|
public/config.yml
|
||||||
|
|
10
README.md
10
README.md
|
@ -61,9 +61,9 @@ npm install
|
||||||
npm run serve
|
npm run serve
|
||||||
```
|
```
|
||||||
|
|
||||||
### themes
|
### Themes
|
||||||
|
|
||||||
Theme are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)).
|
Themes are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)).
|
||||||
To addd a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-<name>` scope. Then import it in the main style file.
|
To addd a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-<name>` scope. Then import it in the main style file.
|
||||||
|
|
||||||
```scss
|
```scss
|
||||||
|
@ -81,7 +81,7 @@ body #app.theme-my-awesome-theme. { ... }
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Title, icons, links, colors, and services can be configured in the `config.yml` file, using [yaml](http://yaml.org/) format.
|
Title, icons, links, colors, and services can be configured in the `config.yml` file (located in project root directory once built, or in the `public/` directory in developement mode), using [yaml](http://yaml.org/) format.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
|
@ -142,7 +142,7 @@ links:
|
||||||
- name: "ansible"
|
- name: "ansible"
|
||||||
icon: "fab fa-github"
|
icon: "fab fa-github"
|
||||||
url: "https://github.com/xxxxx/ansible/"
|
url: "https://github.com/xxxxx/ansible/"
|
||||||
target: "_blank" # optional html a tag target attribute
|
target: "_blank" # optional html tag target attribute
|
||||||
- name: "Wiki"
|
- name: "Wiki"
|
||||||
icon: "fas fa-book"
|
icon: "fas fa-book"
|
||||||
url: "https://wiki.xxxxxx.com/"
|
url: "https://wiki.xxxxxx.com/"
|
||||||
|
@ -161,7 +161,7 @@ services:
|
||||||
subtitle: "Continuous integration server"
|
subtitle: "Continuous integration server"
|
||||||
tag: "CI"
|
tag: "CI"
|
||||||
url: "#"
|
url: "#"
|
||||||
target: "_blank" # optional html a tag target attribute
|
target: "_blank" # optional html tag target attribute
|
||||||
- name: "RabbitMQ Management"
|
- name: "RabbitMQ Management"
|
||||||
logo: "/assets/tools/rabbitmq.png"
|
logo: "/assets/tools/rabbitmq.png"
|
||||||
subtitle: "Manage & monitor RabbitMQ server"
|
subtitle: "Manage & monitor RabbitMQ server"
|
||||||
|
|
|
@ -65,7 +65,7 @@ services:
|
||||||
items:
|
items:
|
||||||
- name: "Awesome app"
|
- name: "Awesome app"
|
||||||
logo: "assets/tools/sample.png"
|
logo: "assets/tools/sample.png"
|
||||||
subtitle: "Bookmark exemple"
|
subtitle: "Bookmark example"
|
||||||
tag: "app"
|
tag: "app"
|
||||||
url: "https://www.reddit.com/r/selfhosted/"
|
url: "https://www.reddit.com/r/selfhosted/"
|
||||||
target: "_blank" # optionnal html a tag target attribute
|
target: "_blank" # optionnal html a tag target attribute
|
Loading…
Reference in New Issue