Bump to v1.1.2: Add cache-buster for terminal-style CSS and trigger fresh deployment.
This commit is contained in:
parent
1bdbe7398b
commit
5305faec65
3
app.py
3
app.py
|
|
@ -11,7 +11,8 @@ app = Flask(__name__)
|
|||
app.secret_key = os.environ.get("FLASK_SECRET_KEY", "prod-secret-7721")
|
||||
|
||||
metrics = PrometheusMetrics(app)
|
||||
metrics.info('app_info', 'Application info', version='1.1.1')
|
||||
metrics.info('app_info', 'Application info', version='1.1.2')
|
||||
|
||||
|
||||
# API Configuration
|
||||
api_key = os.environ.get("AI_API_KEY")
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ spec:
|
|||
serviceAccountName: txt2md-sa
|
||||
containers:
|
||||
- name: txt2md
|
||||
image: europe-west3-docker.pkg.dev/project-84ddd43d-e408-4cb9-8cb/txt2md-repo/txt2md:v1.1.1
|
||||
image: europe-west3-docker.pkg.dev/project-84ddd43d-e408-4cb9-8cb/txt2md-repo/txt2md:v1.1.2
|
||||
ports:
|
||||
- containerPort: 5000
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>txt2md</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}?v=1.1.2">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
|
|
|||
Loading…
Reference in New Issue