Skip to content

Commit 23d42ee

Browse files
committed
fly.io
1 parent 2686d79 commit 23d42ee

4 files changed

Lines changed: 75 additions & 1 deletion

File tree

.dockerignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# flyctl launch added from .gitignore
2+
# Python cache and bytecode
3+
**/__pycache__
4+
**/*.py[cod]
5+
6+
# Virtual environments
7+
**/venv
8+
**/venv_ia_agentica
9+
**/.venv
10+
11+
# Environment variables
12+
**/.env
13+
14+
# MacOS metadata
15+
**/.DS_Store
16+
17+
# flyctl launch added from .idea/.gitignore
18+
# Default ignored files
19+
.idea/shelf
20+
.idea/workspace.xml
21+
# Ignored default folder with query files
22+
.idea/queries
23+
# Datasource local storage ignored files
24+
.idea/dataSources
25+
.idea/dataSources.local.xml
26+
# Editor-based HTTP Client requests
27+
.idea/httpRequests
28+
29+
# flyctl launch added from .venv/.gitignore
30+
# created by virtualenv automatically
31+
.venv/**/*
32+
fly.toml

.github/workflows/fly-deploy.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2+
3+
name: Fly Deploy
4+
on:
5+
push:
6+
branches:
7+
- main
8+
jobs:
9+
deploy:
10+
name: Deploy app
11+
runs-on: ubuntu-latest
12+
concurrency: deploy-group # optional: ensure only one action runs at a time
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: superfly/flyctl-actions/setup-flyctl@master
16+
- run: flyctl deploy --remote-only
17+
env:
18+
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

fly.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# fly.toml app configuration file generated for cv-assistant-winter-dawn-1459 on 2026-01-17T16:27:50+01:00
2+
#
3+
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4+
#
5+
6+
app = 'cv-assistant-winter-dawn-1459'
7+
primary_region = 'lhr'
8+
9+
[build]
10+
11+
[http_service]
12+
internal_port = 7860
13+
force_https = true
14+
auto_stop_machines = 'stop'
15+
auto_start_machines = true
16+
min_machines_running = 0
17+
processes = ['app']
18+
19+
[[vm]]
20+
memory = '4gb'
21+
cpu_kind = 'shared'
22+
cpus = 1
23+
memory_mb = 4096

resume.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Miguel de la Ossa Abellán is a programmer analyst with extensive experience in COBOL and other languages in mainframe and PC environments.
1+
Miguel de la Ossa Abellán is a programmer analyst with extensive experience in COBOL and other languages
2+
in mainframe and PC environments.
23
Born in the city of Mataró, Spain, in 1968, his work has always been related to software development,
34
mainly in COBOL, although he has also used other languages such as BASIC, Dataflex, Java, C, C++, C#, and Python.
45
He combines his interest in computing with other interests such as music, reading, and researching various topics.

0 commit comments

Comments
 (0)