-
Notifications
You must be signed in to change notification settings - Fork 12
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 #764 from KBVE/dev
Staging refs/heads/main into Main
- Loading branch information
Showing
36 changed files
with
661 additions
and
57 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
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 |
---|---|---|
|
@@ -89,6 +89,7 @@ | |
"pihole", | ||
"plex", | ||
"plyr", | ||
"Pocketbase", | ||
"portainer", | ||
"preact", | ||
"Prefs", | ||
|
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
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 |
---|---|---|
|
@@ -45,6 +45,7 @@ const VideoComponent = ({ | |
} | ||
frameBorder="0" | ||
className={iframeClass} | ||
title="YT Video" | ||
/> | ||
</div> | ||
</> | ||
|
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
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
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
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
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
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
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,13 @@ | ||
--- | ||
// Journal Factory | ||
const journals = await Astro.glob('./**/*.md*'); | ||
--- | ||
<div> | ||
{journals.map((journal) => ( | ||
<article> | ||
<h2>{journal.frontmatter.title}</h2> | ||
<p>{journal.frontmatter.description}</p> | ||
<journal.Content /> | ||
</article> | ||
))} | ||
</div> |
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,12 @@ | ||
--- | ||
title: J1 | ||
description: Configuring a live instances of Pocketbase! | ||
date: 2023-08-13 | ||
--- | ||
|
||
#### PB Adventure | ||
|
||
The plan is to document the setup and journey of getting pocket base up and running! | ||
Right now I am looking at the development side, including making sure that the database can be backed up. | ||
One of my other concerns would be the security of the data and the files, what if someone uploads a bad item, like a shell script! | ||
Or even worse, what happens if a backup does not recover automatically! |
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,13 @@ | ||
--- | ||
// Notes Factory | ||
const notes = await Astro.glob('./*.md*'); | ||
--- | ||
<div> | ||
{notes.map((note) => ( | ||
<article> | ||
<h2>{note.frontmatter.title}</h2> | ||
<p>{note.frontmatter.description}</p> | ||
<note.Content /> | ||
</article> | ||
))} | ||
</div> |
8 changes: 8 additions & 0 deletions
8
src/content/application/pocketbase/_notes/pocketbase_notes.md
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,8 @@ | ||
--- | ||
title: Notes | ||
description: These are the general notes for Pocketbase! | ||
--- | ||
|
||
#### What is Pocketbase? | ||
|
||
Have you wondered what Pocketbase is? |
Oops, something went wrong.