Skip to content

Commit

Permalink
Fix about link (#197)
Browse files Browse the repository at this point in the history
* Fix hotlinking to /about and /documents

* Add Bänk to contributors

* Bump version to 1.0.4
  • Loading branch information
JustinLex authored Jan 16, 2023
1 parent 510c4ce commit 63bf4c5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ If you use this code in your own projects, you must share your source code, even
* Justin Lex-Hammarskjöld (AKA "Lex")
* Project leader, Architecture, Python code, Terraform & Kubernetes configuration
* [Github](https://github.com/JustinLex)
* Sebastian Divander (AKA "Bänk")
* Lead frontend developer
* [Github](https://github.com/Sebbedi)
* Axel Förshallen (AKA "Doggo")
* Frontend forms, cookie handling, and API integration
* [Github](https://github.com/axelf08)
Expand Down
2 changes: 1 addition & 1 deletion back/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tmeit_backend"
version = "1.0.3"
version = "1.0.4"
description = "Python backend for the TMEIT website"
authors = ["TraditionsMEsterIT"]
license = "AGPL-3.0"
Expand Down
2 changes: 2 additions & 0 deletions back/tmeit_backend/app_root.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
@app.get("/migrate/{uuid}")
@app.get("/migrate/{uuid}/admin")
@app.get("/migrating")
@app.get("/about")
@app.get("/documents")
async def load_js_app():
return FileResponse('static/front/index.html')

Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/postgres/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/jobTemplate/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/db-backup-agent:1.0.3"
"value": "ghcr.io/tmeit/db-backup-agent:1.0.4"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-run-migrations:1.0.3"
"value": "ghcr.io/tmeit/tmeit-run-migrations:1.0.4"
}
]
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/tmeit-app/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-app:1.0.3"
"value": "ghcr.io/tmeit/tmeit-app:1.0.4"
}
]
2 changes: 1 addition & 1 deletion deploy/kubernetes/tmeit-se/tmeit-worker/set_image_tag.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"op": "replace",
"path": "/spec/template/spec/containers/0/image",
"value": "ghcr.io/tmeit/tmeit-worker:1.0.3"
"value": "ghcr.io/tmeit/tmeit-worker:1.0.4"
}
]
2 changes: 1 addition & 1 deletion front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sideEffects": [
"*.css"
],
"version": "1.0.3",
"version": "1.0.4",
"description": "Front-end for the TMEIT website.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 63bf4c5

Please sign in to comment.