feat: update README with banner, staging link, and real smoke-test badge #450
23
.gitea/workflows/smoke-test.yml
Normal file
23
.gitea/workflows/smoke-test.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Staging Smoke Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
schedule:
|
||||
- cron: '*/15 * * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
smoke-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check staging environment uptime
|
||||
run: |
|
||||
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" http://staging.the-nexus.com/)
|
||||
if [ "$HTTP_CODE" -eq 200 ]; then
|
||||
echo "Staging environment is up (HTTP 200)"
|
||||
else
|
||||
echo "Staging environment returned HTTP $HTTP_CODE"
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,15 +1,12 @@
|
||||
# ◈ The Nexus — Timmy's Sovereign Home
|
||||
|
||||

|
||||
<!-- TODO: Replace the placeholder image URL with an actual banner image for The Nexus. -->
|
||||

|
||||
|
||||
## Staging Environment
|
||||
|
||||
[**🚀 The Nexus Staging Environment**](http://staging.the-nexus.com)
|
||||
<!-- TODO: Update the staging environment URL to the actual URL once available. -->
|
||||
# [**🚀 The Nexus Staging Environment**](http://staging.the-nexus.com)
|
||||
|
||||
[](http://staging.the-nexus.com)
|
||||
<!-- TODO: Integrate a CI/CD pipeline to update this badge with the real status from a smoke test. The badge URL should point to the build status image generated by the CI/CD system. -->
|
||||
[](http://143.198.27.163:3000/Timmy_Foundation/the-nexus/actions?workflow=smoke-test.yml)
|
||||
|
||||
A Three.js environment serving as Timmy's sovereign space — like Dr. Strange's Sanctum Sanctorum, existing outside time. The Nexus is the central hub from which all worlds are accessed through portals.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user