This commit adds a detailed documentation page for Competence Professional 1 (CP 1) of the CDA (Concepteur Développeur d'Applications) certification. The document covers the installation and configuration of the development environment, including IDEs, programming languages, package managers, and version control systems. It also emphasizes the importance of adhering to project-specific requirements and provides evaluation criteria. |
||
|---|---|---|
| .gitea/workflows | ||
| .vscode | ||
| app | ||
| .dockerignore | ||
| .env.example | ||
| .gitignore | ||
| biome.json | ||
| compose.prod.yml | ||
| compose.yml | ||
| Dockerfile | ||
| og_maker.afphoto | ||
| README.md | ||
Generated with vike.dev/new (version 429) using this command:
bun create vike@latest --solid --tailwindcss --authjs --telefunc --fastify --eslint --prettier --biome
Contents
/pages/+config.ts- Routing
/pages/_error/+Page.jsx/pages/+onPageTransitionStart.tsand/pages/+onPageTransitionEnd.ts- SSR
- HTML Streaming
This app is ready to start. It's powered by Vike and SolidJS.
/pages/+config.ts
Such + files are the interface between Vike and your code. It defines:
- A default
<Layout>component (that wraps your<Page>components). - A default
title. - Global
<head>tags.
Routing
Vike's built-in router lets you choose between:
- Filesystem Routing (the URL of a page is determined based on where its
+Page.jsxfile is located on the filesystem) - Route Strings
- Route Functions
/pages/_error/+Page.jsx
The error page which is rendered when errors occur.
/pages/+onPageTransitionStart.ts and /pages/+onPageTransitionEnd.ts
The onPageTransitionStart() hook, together with onPageTransitionEnd(), enables you to implement page transition animations.
SSR
SSR is enabled by default. You can disable it for all your pages or only for some pages.
HTML Streaming
You can enable/disable HTML streaming for all your pages, or only for some pages while still using it for others.