Skip to content

Commit

Permalink
Merge pull request #140 from mikepsinn/develop
Browse files Browse the repository at this point in the history
Add comprehensive system prompt for FDAi autonomous agent, GitHub pages deployment
  • Loading branch information
mikepsinn authored Feb 23, 2024
2 parents 2b20ad0 + 30dcb6f commit 47e6549
Show file tree
Hide file tree
Showing 29 changed files with 783 additions and 165 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- develop # Adjust this as per your deployment branch

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # Adjust this as per your project needs

- name: Install Dependencies
run: npm install # Or yarn install

- name: Build Project
run: npm run build # Adjust this to your build script

- name: Copy Files to Root
run: |
cp -r ./apps/dfda-1/public/app/public/* ./
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./
20 changes: 20 additions & 0 deletions apps/dfda-1/public/app/public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -26932,6 +26932,21 @@ body::after {
z-index: 3;
}

#presentation-video {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
z-index: 3;
margin: auto;
}

.michroma-regular {
font-family: "Michroma", sans-serif;
font-weight: 400;
Expand Down Expand Up @@ -27032,3 +27047,8 @@ body::after {
background-color: white;
color: black;
}


.slider-pager {
display: none !important;
}
23 changes: 23 additions & 0 deletions apps/dfda-1/public/app/public/data/qmStates.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ var qmStates = [
"title": "FDAi",
"ionIcon": "ion-log-in",
"logout": null,
"slides": "slides",
"music": true,
},
"views": {
"menuContent": {
Expand All @@ -85,6 +87,27 @@ var qmStates = [
"resolve": {},
"name": "app.presentation"
},
{
"cache": false,
"url": "/convo",
"params": {
"doNotRedirect": true,
"title": "FDAi",
"ionIcon": "ion-log-in",
"logout": null,
"slides": "slidesConvo",
"autoplay": false,
"music": false,
},
"views": {
"menuContent": {
"templateUrl": "templates/presentation.html",
"controller": "PresentationCtrl"
}
},
"resolve": {},
"name": "app.convo"
},
{
"url": "/track",
"cache": false,
Expand Down
98 changes: 98 additions & 0 deletions apps/dfda-1/public/app/public/data/repo-presentation-v0.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 47e6549

Please sign in to comment.