Public content network - Access shared APIs and datasets from the Coderic network
?? Live Site: coderic.net
Coderic Content Hub es una red de contenido p?blico que proporciona acceso a APIs compartidas y datasets de la red Coderic. El sitio est? construido con Jekyll y desplegado en Cloudflare Pages con Functions para endpoints serverless.
- Static Site: Jekyll 4.4
- Theme: Remote theme from Coderic/coderic.org
- Hosting: Cloudflare Pages
- Functions: Cloudflare Workers
- Styling: Tailwind CSS 4
- Authentication: Auth0
- GET
/api/helloWorld- Test endpoint con respuesta JSON - GET
/api- API index con lista de endpoints disponibles
# Test Hello World endpoint
curl https://coderic.net/api/helloWorld
# Test API Index
curl https://coderic.net/api{
"message": "Hello World from Coderic Content Hub!",
"timestamp": "2025-11-04T22:00:00.000Z",
"network": "HUB",
"version": "1.0.0",
"endpoint": "/api/helloWorld",
"docs": "https://coderic.net/endpoints",
"status": "operational"
}/workspace/
??? _config.yml # Jekyll configuration
??? _includes/
? ??? portal.html # Navigation component
??? functions/
? ??? api/
? ??? helloWorld.js # Hello World endpoint
? ??? [[path]].js # Catch-all API router
??? images/ # Static assets
??? js/
? ??? auth.js # Auth0 integration
??? wrangler.toml # Cloudflare configuration
??? package.json # Node dependencies
??? Gemfile # Ruby dependencies
??? index.html # Homepage
??? apis.html # Public APIs page
??? datasets.html # Datasets page
??? endpoints.html # API endpoints documentation
??? network.html # Network status page
??? 404.html # Custom 404 page
??? callback.html # Auth0 callback
??? logout.html # Auth0 logout
??? sitemap.xml # SEO sitemap
??? robots.txt # SEO robots
??? README.md # This file
- Ruby 3.4.x
- Node.js 18+
- Bundler
- Wrangler CLI (optional, for local Functions testing)
# Install Ruby dependencies
bundle install
# Build site
bundle exec jekyll build
# Serve locally
bundle exec jekyll serve
# Open http://localhost:4000# Install Node dependencies
npm install
# Build Jekyll site first
bundle exec jekyll build
# Run Cloudflare Pages dev server
npm run dev
# Open http://localhost:8788El sitio se despliega autom?ticamente a Cloudflare Pages cuando se hace push a la rama master.
# Build site
bundle exec jekyll build
# Deploy to Cloudflare Pages
npm run deployEl sitio tambi?n se puede desplegar a GitHub Pages autom?ticamente desde la rama master.
El sitio integra Auth0 para autenticaci?n de usuarios:
- Domain:
auth.coderic.org - Client ID: Configurado en
js/auth.js - Callback:
https://coderic.net/callback - Logout:
https://coderic.net/logout
- / - Homepage con hero section y feature cards
- /apis - Public APIs documentation
- /datasets - Shared datasets information
- /endpoints - API endpoints reference
- /network - Network status and uptime
- /404 - Custom 404 error page
title: "Coderic Content Hub"
url: "https://coderic.net"
remote_theme: Coderic/coderic.orgname = "coderic-net"
compatibility_date = "2025-11-04"
pages_build_output_dir = "_site"Note: Las Functions se detectan autom?ticamente desde el directorio
/functions
- ? Sitemap.xml configurado
- ? Robots.txt configurado
- ? IndexNow integration para notificaciones a buscadores
- ? Meta tags y structured data
- ? URLs amigables con permalinks
Este sitio forma parte de la red de dominios Coderic:
- coderic.org - Sitio principal corporativo
- coderic.co - Servicios financieros (FinTech)
- coderic.net - Content Hub (este sitio)
? 2025 Coderic Corporation. All rights reserved.
Este es un repositorio interno de Coderic. Para contribuciones, contactar al equipo de desarrollo.
Built with ?? by Coderic