refactor: rebrand decp.info to colibre #57
- Rename project from decp.info to colibre across all codebase - Update domain from https://decp.info to https://colibre.fr - Update GitHub repo references to ColinMaudry/colibre - Rename deployment files: decpinfo-backup.* → colibre-backup.* - Update project configuration and documentation - Rename project assets: decp.info.png → colibre.png - Update environment variables and constants (DOMAIN_NAME, TOKEN_PREFIX, GITHUB_REPO, etc.) - Update URLs in all pages, tests, and configuration files - Keep DECP acronym in text (unchanged per requirements) - Add rebrand note to README.md Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
+5
-5
@@ -45,7 +45,7 @@ META_TAGS = [
|
||||
{"name": "viewport", "content": "width=device-width, initial-scale=1"},
|
||||
{
|
||||
"name": "keywords",
|
||||
"content": "commande publique, decp, marchés publics, données essentielles",
|
||||
"content": "commande publique, decp, marchés publics, données essentielles, colibre",
|
||||
},
|
||||
]
|
||||
|
||||
@@ -57,7 +57,7 @@ if DEVELOPMENT:
|
||||
# fonctions memoizées (@cache.memoize) dès l'import (ex. tableau.py).
|
||||
server = Flask(__name__)
|
||||
|
||||
cache_dir = os.getenv("CACHE_DIR", "/tmp/decp-cache")
|
||||
cache_dir = os.getenv("CACHE_DIR", "/tmp/colibre-cache")
|
||||
|
||||
if os.path.exists(cache_dir):
|
||||
rmtree(cache_dir)
|
||||
@@ -83,7 +83,7 @@ app: Dash = Dash(
|
||||
# `src.pages.connexion` : deux identités, même URL → "duplicate paths" →
|
||||
# check_for_duplicate_pathnames lève à chaque requête → 500 sur toute l'app.
|
||||
name="src",
|
||||
title="decp.info",
|
||||
title="Colibre",
|
||||
use_pages=True,
|
||||
suppress_callback_exceptions=True,
|
||||
compress=True,
|
||||
@@ -132,7 +132,7 @@ Allow: /
|
||||
|
||||
@app.server.route("/sitemap.xml")
|
||||
def sitemap():
|
||||
base_url = "https://decp.info"
|
||||
base_url = "https://colibre.fr"
|
||||
pages = [
|
||||
"/",
|
||||
"/observatoire",
|
||||
@@ -203,7 +203,7 @@ navbar = dbc.Navbar(
|
||||
children=[
|
||||
html.Div(
|
||||
[
|
||||
dcc.Link(html.H1("decp.info"), href="/", className="logo"),
|
||||
dcc.Link(html.H1("colibre"), href="/", className="logo"),
|
||||
html.P(
|
||||
[
|
||||
html.A(
|
||||
|
||||
Reference in New Issue
Block a user