refactor: rename project from AlphaHuman to OpenHuman and update configurations

- Deleted obsolete .mcp.json file.
- Updated ESLint and test configurations to reflect new file paths.
- Changed title and branding in index.html and README.md to OpenHuman.
- Adjusted package.json scripts for testing with new configuration files.
- Modified E2E test scripts to use updated WebDriverIO configuration paths.
- Added new TypeScript configuration files for E2E testing and Vitest.
This commit is contained in:
Steven Enamakel
2026-03-19 10:48:08 -07:00
parent 82c209b252
commit 97358a4ea6
16 changed files with 59 additions and 55 deletions
+3 -6
View File
@@ -33,18 +33,16 @@ jobs:
uses: actions/configure-pages@v5
- name: Install dependencies
run: cd lander && npm ci
run: cd lander && yarn install --frozen-lockfile
- name: Build (static export)
env:
NEXT_PUBLIC_BASE_PATH: ${{ github.event.repository.name == format('{0}.github.io', github.repository_owner) && '' || format('/{0}', github.event.repository.name) }}
run: |
cd lander
npm run build
yarn build
# If Next doesn't emit `out/` automatically, fall back to `next export`.
if [ ! -d out ]; then
npx next export --out-dir out
./node_modules/.bin/next export --out-dir out
fi
# GitHub Pages custom domain support: CNAME must be present at the site root.
@@ -58,4 +56,3 @@ jobs:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4