-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Appsilon/add-webpage
Add CI quarto setup for webpage.
- Loading branch information
Showing
11 changed files
with
147 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: main | ||
|
||
name: Quarto Publish | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Copy Quarto file. | ||
run: cp docs/_quarto.yml . | ||
|
||
- name: Copy styles | ||
run: cp docs/styles.css . | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Render and Publish | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,8 @@ | |
.Ruserdata | ||
.DS_Store | ||
.Renviron | ||
|
||
/.quarto/ | ||
/_site/ | ||
_quarto.yml | ||
styles.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,7 @@ | |
.Renviron | ||
.rhino | ||
.rscignore | ||
build_local_docs.sh | ||
docs | ||
img | ||
tests |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,10 @@ The LogAnalyzer open-source app is a simple, plug and play application developed | |
- The only thing you need to set this up and use is the `CONNECT_API_KEY` set as an environment variable. The idea is that the key should come from either an admin account or someone with privileges to view all apps. Apps that are not available to a user will not have their logs available to them. | ||
- If you want to test the app locally, you will need to set the `CONNECT_SERVER` as an environment variable. When deployed, the `CONNECT_SERVER` is setup automatically for you. | ||
|
||
![LogAnalyzerDemo](https://github.com/Appsilon/LogAnalyzer/assets/26517718/90d1111d-006b-42db-8d8b-b55ee391cb21) | ||
![](img/app_preview.gif) | ||
|
||
# Credits | ||
It was our collaboration with <img src="https://github.com/Appsilon/LogAnalyzer/assets/26517718/b26fd60b-4989-4d31-a01e-5cf865f5ec9b" alt="Elkem" width="50"/> which led to the creation of this app. The initial idea came from use-cases where we realised we wanted to track all the logs and be able to read them properly since Posit Connect was the de facto deployment environment. When we made this app, we realised there was potential in sharing this with the rest of the community and invite everyone to use it and add it. We appreciate and thank Elkem for their openness to share it with the world. | ||
It was our collaboration with <img src="img/elkem_logo.png" alt="Elkem" width="50"/> which led to the creation of this app. The initial idea came from use-cases where we realised we wanted to track all the logs and be able to read them properly since Posit Connect was the de facto deployment environment. When we made this app, we realised there was potential in sharing this with the rest of the community and invite everyone to use it and add it. We appreciate and thank Elkem for their openness to share it with the world. | ||
|
||
You can read more about Appsilon and Elkem's collaboration on our case study [here](https://www.appsilon.com/case-studies/refining-elkems-processes-with-advanced-data-analytics). | ||
|
||
|
@@ -27,5 +27,5 @@ Get in touch [[email protected]](mailto:[email protected]) | |
Explore the [Rhinoverse](https://rhinoverse.dev) - a family of R packages built around [Rhino](https://appsilon.github.io/rhino/)! | ||
|
||
<a href = "https://appsilon.us16.list-manage.com/subscribe?u=c042d7c0dbf57c5c6f8b54598&id=870d5bfc05" target="_blank"> | ||
<img src="https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/shiny_weekly_light.jpg" alt="Subscribe for Shiny tutorials, exclusive articles, R/Shiny community events, and more."/> | ||
<img id="footer-banner" src="https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/shiny_weekly_light.jpg" alt="Subscribe for Shiny tutorials, exclusive articles, R/Shiny community events, and more."/> | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/bash | ||
|
||
# This script is used to build the local documentation for the project. | ||
|
||
remove_files() { | ||
if [ -f _quarto.yml ]; then | ||
echo "Removing _quarto.yml..." | ||
rm _quarto.yml | ||
fi | ||
|
||
if [ -f styles.css ]; then | ||
echo "Removing styles.css..." | ||
rm styles.css | ||
fi | ||
} | ||
|
||
cleanup() { | ||
echo "Cleaning up..." | ||
remove_files | ||
exit 1 | ||
} | ||
|
||
trap cleanup SIGINT | ||
|
||
if [ "$1" = "preview" ]; then | ||
echo "Copying _quarto.yml..." | ||
cp docs/_quarto.yml _quarto.yml | ||
echo "Copying styles.css..." | ||
cp docs/styles.css styles.css | ||
|
||
echo "Building local documentation preview..." | ||
quarto preview | ||
elif [ "$1" = "render" ]; then | ||
echo "Copying _quarto.yml..." | ||
cp docs/_quarto.yml _quarto.yml | ||
echo "Copying styles.css..." | ||
cp docs/styles.css styles.css | ||
|
||
echo "Rendering local documentation..." | ||
quarto render | ||
remove_files | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.quarto/ | ||
/_site/ | ||
README.md | ||
/img/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
project: | ||
type: website | ||
render: | ||
- README.md | ||
- LICENSE.md | ||
|
||
website: | ||
title: "LogAnalyzer" | ||
page-footer: "By Appsilon with 💙 | Copyright 2024 ©" | ||
repo-url: https://github.com/Appsilon/LogAnalyzer | ||
google-analytics: "G-FQQZL5V93G" | ||
navbar: | ||
background: "#0099F9" | ||
foreground: "#fff" | ||
logo: "https://avatars0.githubusercontent.com/u/6096772" | ||
left: | ||
- text: Home | ||
icon: house | ||
href: README.md | ||
- text: License | ||
icon: key | ||
href: LICENSE.md | ||
right: | ||
- text: GitHub | ||
icon: github | ||
href: https://github.com/Appsilon/LogAnalyzer | ||
- text: Appsilon | ||
href: https://appsilon.com/ | ||
|
||
format: | ||
html: | ||
theme: cosmo | ||
css: styles.css | ||
toc: true | ||
|
||
execute: | ||
freeze: auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.navbar-nav > .nav-item > .nav-link.active { | ||
color: #fff !important; | ||
font-weight: bold; | ||
} | ||
|
||
.navbar-nav > .nav-item > a.nav-link:hover { | ||
color: #c2c2c2 !important; | ||
} | ||
|
||
.navbar a.navbar-brand:hover { | ||
color: #c2c2c2 !important; | ||
} | ||
|
||
#footer-banner { | ||
max-width: 796px; | ||
} | ||
|
||
.navbar-logo { | ||
height: auto; | ||
width: 4rem; | ||
max-height: max-content; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.