Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TitleCreator Development Environment",
"image": "mcr.microsoft.com/devcontainers/python:3.9",
"image": "mcr.microsoft.com/devcontainers/python:3.12",

"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
Expand Down
2 changes: 1 addition & 1 deletion CODESPACES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repository is configured with a pre-built GitHub Codespaces environment tha
- Wait for the environment to build (first time takes ~3-5 minutes)

2. **Environment will include**:
- ✅ Python 3.9 with Flask and dependencies
- ✅ Python 3.12 with Flask and dependencies
- ✅ Docker and Docker Compose
- ✅ Google Cloud CLI (`gcloud`)
- ✅ GitHub CLI (`gh`)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Python 3 slim base image
FROM python:3.9-slim
FROM python:3.12-slim

# Set the working directory in the container
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Inspired by a salesperson who would always introduce me with a new title on ever
## Instructions to run locally:
Enter this in the command line:

`Python TitleCreator.py` or `./TitleCreator.py` on Linux/BSD/macOS.
`python3 titlecreator.py` or `./titlecreator.py` on Linux/BSD/macOS.

^ You did it! You have a new title! Add it to your Linkedin.

Expand Down
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
runtime: python27
runtime: python312
api_version: 1
threadsafe: false
handlers:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
flask==2.3.3
gunicorn==23.0.0
flask==3.0.2
gunicorn==21.2.0