Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .firebase/hosting.cHVibGlj.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
index.html,1728848432003,c4f2f3fafc510bc4e4df5ba95cc6f3a022f1844b327327655ead1ad7058946d6
404.html,1728848430197,762bf484ba67404bd1a3b181546ea28d60dfddf18e9dd4795d8d25bcf3c1a890
pattern.svg,1728829166553,eafd0daccfd9f15aeac8a07582c9c1570a1b49c92b5e07a65294039173e0dd7f
avatar.webp,1728831787402,f20a72481c345e260880b381d0d39348561cbd3bf78bfe6554d5ce1cab952a5d
logos/miinto.jpeg,1728829166553,7a7cae42eb359a3eb52dd03d5abcfba5fa9f99142c800a05a5a2803fbf12f48e
site.webmanifest,1728838430567,213ebbf978b21a77707b6e96e8ae1a8710fbb29b8526fbf1478130bce325ce69
logos/efigence.jpeg,1728829166553,27b565f9fe7d97b4ab1c86a38b7006b1947dcac96668a6913c944237786a854e
logos/dutchpet.jpeg,1728829166552,50342f31112769bfc7327075b2cb23dcfb1626c62104d951f8b785c23cbf82b2
logos/aws.jpeg,1728829166552,23f582daa66049cbc80d2be6573543be80c48ff1985a3c0dd8c463b0f515a21c
resume.pdf,1728826587586,6964aa51cb6ff0c806ea4b38147ea2838b463ac84b61195ca24545e4acaa7aab
favicon.png,1728838894591,ae702e7facf26da2faf787ab2910908c213e7bf17c5dd33aa8922cb354b1ee8d
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "myweb-d789e"
}
}
34 changes: 34 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy to GitHub Pages

on:
# Ejecuta en pushes a la rama principal
push:
branches: [ main ]
# Te permite ejecutar este flujo manualmente desde la pestaña Actions
workflow_dispatch:

# Permite clonar el repositorio y desplegar a GitHub Pages
permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install, build, and upload your site
uses: withastro/action@v0

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
51 changes: 51 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Binary file added .yarn/install-state.gz
Binary file not shown.
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
23 changes: 23 additions & 0 deletions apphosting.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Settings for Backend (on Cloud Run).
# See https://firebase.google.com/docs/app-hosting/configure#cloud-run
runConfig:
minInstances: 0
# maxInstances: 100
# concurrency: 80
# cpu: 1
# memoryMiB: 512

# Environment variables and secrets.
# env:
# Configure environment variables.
# See https://firebase.google.com/docs/app-hosting/configure#user-defined-environment
# - variable: MESSAGE
# value: Hello world!
# availability:
# - BUILD
# - RUNTIME

# Grant access to secrets in Cloud Secret Manager.
# See https://firebase.google.com/docs/app-hosting/configure#secret-parameters
# - variable: MY_SECRET
# secret: mySecretRef
4 changes: 3 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ import react from "@astrojs/react";

// https://astro.build/config
export default defineConfig({
site: 'https://fidelsalazar.github.io',
//base: '/vrus.vercel.app',
integrations: [tailwind(), react()]
});
});
Binary file removed demo/demo.webp
Binary file not shown.
Binary file removed demo/pagespeed-score.png
Binary file not shown.
34 changes: 34 additions & 0 deletions deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy to GitHub Pages

on:
# Ejecuta en pushes a la rama principal
push:
branches: [ main ]
# Te permite ejecutar este flujo manualmente desde la pestaña Actions
workflow_dispatch:

# Permite clonar el repositorio y desplegar a GitHub Pages
permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v3
- name: Install, build, and upload your site
uses: withastro/action@v0

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
10 changes: 10 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"hosting": {
"site": "fidelsalazar",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
Loading