Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PGimenez committed Jul 12, 2023
0 parents commit c93e24d
Show file tree
Hide file tree
Showing 360 changed files with 69,482 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist
node_modules
.output
.nuxt
8 changes: 8 additions & 0 deletions .eslintrc.cjs
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'
}
}
45 changes: 45 additions & 0 deletions .github/workflows/deploytogfcom.yml
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
12 changes: 12 additions & 0 deletions .gitignore
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
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
strict-peer-dependencies=false
75 changes: 75 additions & 0 deletions app.config.ts
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'
// },
// }
// }
// })
Binary file added assets/appgallery/bert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/appgallery/germancredits.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/appgallery/histogram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/appgallery/julia-packages-downloads.webp
Binary file not shown.
Binary file added assets/appgallery/lorenz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/appgallery/travelling-salesman.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/appgallery/whisper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/01/applog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/01/clone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/01/dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/01/gblog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/01/importzip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/01/password.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
114 changes: 114 additions & 0 deletions assets/css/main.css
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;
}
Loading

0 comments on commit c93e24d

Please sign in to comment.