Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77dbccfc7e | ||
|
|
b80f4bd053 | ||
|
|
14e1f1f935 | ||
|
|
527221462b | ||
|
|
009836647b | ||
|
|
8b25af88e0 |
5 changed files with 7 additions and 5 deletions
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
|
|
@ -19,7 +19,9 @@ jobs:
|
|||
packages: write
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
- name: Setup docker buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Login To registry ${{ env.REGISTRY }}
|
||||
|
|
|
|||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -10,7 +10,7 @@ node_modules/
|
|||
package-lock.json
|
||||
|
||||
#external assets
|
||||
database_assets/
|
||||
database_assets/*
|
||||
!database_assets/com.nebula.gruvbox/
|
||||
!database_assets/com.nebula.lightTheme/
|
||||
!database_assets/com.nebula.oled/
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ enabled = false
|
|||
domain = "https://nebulaproxy.io"
|
||||
|
||||
[db]
|
||||
name = "database" # Your databsae name
|
||||
name = "database" # Your database name
|
||||
username = "username" # The username of your DB (SQLITE just ignores this)
|
||||
password = "password" # The password to your DB (SQLITE ignores this)
|
||||
postgres = false # Enable to use postgres over sqlite (recommended for large prod instances)
|
||||
|
|
|
|||
BIN
database_assets/com.nebula.gruvbox/gruvbox.jpg
Normal file
BIN
database_assets/com.nebula.gruvbox/gruvbox.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.6 KiB |
|
|
@ -74,7 +74,7 @@ async function setupDB(db: ModelStatic<CatalogModel>) {
|
|||
payload: "retro.css",
|
||||
type: "theme"
|
||||
},
|
||||
{
|
||||
/* {
|
||||
package_name: 'gyatt',
|
||||
title: 'gyatt',
|
||||
image: 'gyatt',
|
||||
|
|
@ -84,7 +84,7 @@ async function setupDB(db: ModelStatic<CatalogModel>) {
|
|||
tags: [ "e" ],
|
||||
payload: "gyatt.js",
|
||||
type: "plugin-page"
|
||||
}
|
||||
} */
|
||||
//To add plugins: plugin types consist of plugin-sw (workerware) & plugin-page (uv.config.inject)
|
||||
];
|
||||
const dbItems = await db.findAll();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue