refactor(Makefile): remove App Engine configs and scripts, migrate launchpad to Cloud Run

This commit removes legacy App Engine deployment artifacts and updates the Makefile to reflect the successful migration of the `internal-launchpad` service to Cloud Run.

The following changes were made:

- Deleted obsolete permission scripts:
 - `fix-appengine-permissions-complete.sh`
 - `fix-project-level-permissions.sh`
 - `create-missing-repository.sh`
- Removed the `firebase/internal-launchpad/app.yaml` file.
- Updated `firebase.json` to remove the `launchpad` hosting configuration.

These changes streamline the repository, reduce developer confusion, and prevent the accidental use of outdated deployment logic.
This commit is contained in:
bwnyasse
2025-11-16 08:10:31 -05:00
parent 383fc14bf8
commit 3bd2dfc002
13 changed files with 638 additions and 167 deletions

17
admin-web/.gcloudignore Normal file
View File

@@ -0,0 +1,17 @@
# This file specifies files that are *not* uploaded to Google Cloud
# using gcloud. It follows the same syntax as .gitignore, with the addition of
# "#!include" directives (which insert the entries of the given .gitignore-style
# file at that point).
#
# For more information, run:
# $ gcloud topic gcloudignore
#
.gcloudignore
# If you would like to upload your .git directory, .gitignore file or files
# from your .gitignore file, remove the corresponding line
# below:
.git
.gitignore
# Node.js dependencies:
node_modules/

13
admin-web/app.dev.yaml Normal file
View File

@@ -0,0 +1,13 @@
runtime: nodejs20
service: admin-web-dev
handlers:
# Servir les fichiers statiques (js, css, images, etc.)
- url: /(.*\.(js|css|svg|png|jpg|ico|txt))$
static_files: dist/\1
upload: dist/.*\.(js|css|svg|png|jpg|ico|txt)$
# Servir l'index.html pour toutes les autres routes (pour le routing côté client de React)
- url: /.*
static_files: dist/index.html
upload: dist/index.html

View File

@@ -0,0 +1,13 @@
runtime: nodejs20
service: admin-web-staging
handlers:
# Servir les fichiers statiques (js, css, images, etc.)
- url: /(.*\.(js|css|svg|png|jpg|ico|txt))$
static_files: dist/\1
upload: dist/.*\.(js|css|svg|png|jpg|ico|txt)$
# Servir l'index.html pour toutes les autres routes (pour le routing côté client de React)
- url: /.*
static_files: dist/index.html
upload: dist/index.html