-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c93e24d
Showing
360 changed files
with
69,482 additions
and
0 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,4 @@ | ||
dist | ||
node_modules | ||
.output | ||
.nuxt |
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 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@nuxt/eslint-config', | ||
rules: { | ||
'vue/max-attributes-per-line': 'off', | ||
'vue/multi-word-component-names': 'off' | ||
} | ||
} |
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,45 @@ | ||
name: Build and Push to gf.com | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '19' | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Checkout Docs Repo | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: GenieFramework/GenieFramework.com # Replace with your target repository | ||
path: gfsite | ||
|
||
- name: Copy Build Output to Docs Repo | ||
run: | | ||
rm -rf gfsite/docs/* | ||
cp -r .output/public/* gfsite/docs/ | ||
- name: Push to Docs Repo | ||
run: | | ||
cd repo | ||
git config user.name "PGimenez" | ||
git config user.email "[email protected]" | ||
git add . | ||
git commit -m "Update docs with new build" | ||
git push |
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 @@ | ||
node_modules | ||
*.iml | ||
.idea | ||
*.log* | ||
.nuxt | ||
.vscode | ||
.DS_Store | ||
coverage | ||
dist | ||
sw.* | ||
.env | ||
.output |
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,2 @@ | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
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,75 @@ | ||
export default defineAppConfig({ | ||
docus: { | ||
title: 'Genie Cloud Resource Hub', | ||
description: '', | ||
layout: '', | ||
image: '/meta.png', | ||
url: '', | ||
debug: false, | ||
socials: { | ||
twitter: '@genieMVC', | ||
github: 'genieframework' | ||
}, | ||
github: { | ||
root: 'content', | ||
owner: "PGimenez", | ||
repo: "geniedocssite", | ||
branch: "main", | ||
edit: false, | ||
releases: true | ||
}, | ||
aside: { | ||
level: 1, | ||
collapsed: false, | ||
exclude: [] | ||
}, | ||
main: { | ||
padded: true, | ||
fluid: false | ||
}, | ||
header: { | ||
logo: true, | ||
showLinkIcon: true, | ||
exclude: [], | ||
fluid: true | ||
} | ||
} | ||
}) | ||
|
||
// export default defineAppConfig({ | ||
// docus: { | ||
// title: 'Genie Cloud Resource Hub', | ||
// description: '', | ||
// layout: '', | ||
// image: '/meta.png', | ||
// url: '', | ||
// debug: false, | ||
// socials: { | ||
// twitter: '@genieMVC', | ||
// github: 'genieframework' | ||
// }, | ||
// github: { | ||
// root: 'content', | ||
// owner: "PGimenez", | ||
// repo: "geniedocssite", | ||
// branch: "main", | ||
// edit: false, | ||
// releases: true | ||
// }, | ||
// aside: { | ||
// level: 1 | ||
// }, | ||
// header: { | ||
// title: '', | ||
// showLinkIcon: true, | ||
// logo: true, | ||
// }, | ||
// footer: { | ||
// credits: { | ||
// icon: 'IconDocus', | ||
// text: 'Powered by Docus', | ||
// href: 'https://docus.dev' | ||
// }, | ||
// } | ||
// } | ||
// }) |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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.
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.
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,114 @@ | ||
'&.center': { | ||
gridColumn: 'span 4 / span 4', | ||
justifyContent: 'center', | ||
flex: '1', | ||
zIndex: '1' | ||
} | ||
.light-img { | ||
display: block; | ||
@dark { | ||
display: hidden; | ||
} | ||
} | ||
|
||
.dark-img { | ||
display: hidden; | ||
@dark { | ||
display: block; | ||
} | ||
} | ||
|
||
/* Base */ | ||
|
||
:root { | ||
/* DocSearch */ | ||
--docsearch-primary-color: $dt('color.primary.500') !important; | ||
} | ||
|
||
.dark:root { | ||
color-scheme: dark; | ||
/* DocSearch */ | ||
--docsearch-primary-color: $dt('color.primary.500') !important; | ||
--docsearch-text-color: rgb(245, 246, 247); | ||
--docsearch-container-background: rgba(9, 10, 17, 0.8); | ||
--docsearch-modal-background: rgb(21, 23, 42); | ||
--docsearch-modal-shadow: inset 1px 1px 0 0 rgb(44, 46, 64), | ||
0 3px 8px 0 rgb(0, 3, 9); | ||
--docsearch-searchbox-background: rgb(9, 10, 17); | ||
--docsearch-searchbox-focus-background: #000; | ||
--docsearch-hit-color: rgb(190, 195, 201); | ||
--docsearch-hit-shadow: none; | ||
--docsearch-hit-background: rgb(9, 10, 17); | ||
--docsearch-key-gradient: linear-gradient( | ||
-26.5deg, | ||
rgb(86, 88, 114) 0%, | ||
rgb(49, 53, 91) 100% | ||
); | ||
--docsearch-key-shadow: inset 0 -2px 0 0 rgb(40, 45, 85), | ||
inset 0 0 1px 1px rgb(81, 87, 125), 0 2px 2px 0 rgba(3, 4, 9, 0.3); | ||
--docsearch-footer-background: rgb(30, 33, 54); | ||
--docsearch-footer-shadow: inset 0 1px 0 0 rgba(73, 76, 106, 0.5), | ||
0 -4px 8px 0 rgba(0, 0, 0, 0.2); | ||
--docsearch-logo-color: rgb(255, 255, 255); | ||
--docsearch-muted-color: rgb(127, 132, 151); | ||
} | ||
.DocSearch-Input:focus { | ||
box-shadow: none !important; | ||
} | ||
|
||
body { | ||
overflow-y: scroll; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
background: $dt('color.white'); | ||
color: $dt('color.gray.700'); | ||
font-family: $dt('font.sans'); | ||
|
||
@dark { | ||
background: $dt('color.black'); | ||
color: $dt('color.gray.200'); | ||
} | ||
} | ||
|
||
.docus-scrollbars { | ||
& ::-webkit-scrollbar { | ||
width: 0.6em; | ||
height: 0.6em; | ||
background: transparent; | ||
} | ||
|
||
& ::-webkit-scrollbar-track { | ||
background: $dt('color.gray.100'); | ||
} | ||
|
||
& ::-webkit-scrollbar-thumb { | ||
border-radius: 0.6em; | ||
background: $dt('color.gray.300'); | ||
&:hover { | ||
background: $dt('color.gray.400'); | ||
} | ||
&:active { | ||
background: $dt('color.gray.500'); | ||
} | ||
} | ||
|
||
&.dark { | ||
& ::-webkit-scrollbar-track { | ||
background: $dt('color.gray.800'); | ||
} | ||
|
||
& ::-webkit-scrollbar-thumb { | ||
background: $dt('color.gray.700'); | ||
&:hover { | ||
background: $dt('color.gray.600'); | ||
} | ||
&:active { | ||
background: $dt('color.gray.500'); | ||
} | ||
} | ||
} | ||
} | ||
|
||
.block-hero{ | ||
width:200px; | ||
} |
Oops, something went wrong.