my-cloud-devops-consulting 1.1.202506142253__py3-none-any.whl → 1.1.202506150009__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- app.py +13 -0
- {my_cloud_devops_consulting-1.1.202506142253.dist-info → my_cloud_devops_consulting-1.1.202506150009.dist-info}/METADATA +2 -1
- my_cloud_devops_consulting-1.1.202506150009.dist-info/RECORD +5 -0
- my_cloud_devops_consulting-1.1.202506142253.dist-info/RECORD +0 -5
- {my_cloud_devops_consulting-1.1.202506142253.dist-info → my_cloud_devops_consulting-1.1.202506150009.dist-info}/WHEEL +0 -0
- {my_cloud_devops_consulting-1.1.202506142253.dist-info → my_cloud_devops_consulting-1.1.202506150009.dist-info}/top_level.txt +0 -0
app.py
CHANGED
@@ -143,11 +143,24 @@ def logout():
|
|
143
143
|
flash("Logged out successfully!", "info")
|
144
144
|
return redirect(url_for("login"))
|
145
145
|
|
146
|
+
# My added route
|
146
147
|
@app.route('/about')
|
147
148
|
def about():
|
148
149
|
message = "We don’t just build infrastructure — we empower innovation. 💡💕"
|
149
150
|
return render_template('about.html', message=message)
|
150
151
|
|
152
|
+
@app.route('/test')
|
153
|
+
def test():
|
154
|
+
# return "Test route is working!" # This shows in the browser
|
155
|
+
return redirect(url_for('about', custom_message="Hello from /test!"))
|
156
|
+
|
157
|
+
|
158
|
+
@app.route('/new')
|
159
|
+
def new():
|
160
|
+
fisrt_name = "betrand".title()
|
161
|
+
last_name = "mutagha".upper()
|
162
|
+
return f"{fisrt_name} {last_name}"
|
163
|
+
|
151
164
|
|
152
165
|
if __name__ == '__main__':
|
153
166
|
app.run(debug=True, host='0.0.0.0', port=50)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: my-cloud-devops-consulting
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.202506150009
|
4
4
|
Summary: This is my consulting website for Cloud & DevOps services.
|
5
5
|
Home-page: https://github.com/Betrand1999/project-root
|
6
6
|
Author: Betrand Mutagha
|
@@ -94,6 +94,7 @@ python app.py
|
|
94
94
|
####################################################
|
95
95
|
pending pod disk space
|
96
96
|
# See what images are present
|
97
|
+
clear
|
97
98
|
ctr -n k8s.io images list
|
98
99
|
|
99
100
|
# Remove unused containerd images (be cautious)
|
@@ -0,0 +1,5 @@
|
|
1
|
+
app.py,sha256=p9Xr1QdVOXUAsDaSHPuRfMdeyog4nSqzLKx-U1BKzms,5917
|
2
|
+
my_cloud_devops_consulting-1.1.202506150009.dist-info/METADATA,sha256=3a4LOcoTYhVCk2H0X-TEus8BhSvi-a-ycAGAmNRR3Es,3256
|
3
|
+
my_cloud_devops_consulting-1.1.202506150009.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
+
my_cloud_devops_consulting-1.1.202506150009.dist-info/top_level.txt,sha256=io9g7LCbfmTG1SFKgEOGXmCFB9uMP2H5lerm0HiHWQE,4
|
5
|
+
my_cloud_devops_consulting-1.1.202506150009.dist-info/RECORD,,
|
@@ -1,5 +0,0 @@
|
|
1
|
-
app.py,sha256=rkFEr9oVgn_X__HsPIdlUWPm0F4eRQtdUMzyKt1UhFw,5585
|
2
|
-
my_cloud_devops_consulting-1.1.202506142253.dist-info/METADATA,sha256=hk_cf3VR419xzD4dXU2xUSH-yQmaFsFIZi-uBP3CPU8,3250
|
3
|
-
my_cloud_devops_consulting-1.1.202506142253.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
-
my_cloud_devops_consulting-1.1.202506142253.dist-info/top_level.txt,sha256=io9g7LCbfmTG1SFKgEOGXmCFB9uMP2H5lerm0HiHWQE,4
|
5
|
-
my_cloud_devops_consulting-1.1.202506142253.dist-info/RECORD,,
|
File without changes
|