this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

misc: update domain name to `compiles.at`

Clément 7f989942 4ec424c9

+18 -21
+3 -3
.github/workflows/frontend.yml
··· 79 79 apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 80 80 wranglerVersion: 4.85.0 81 81 packageManager: pnpm 82 - command: d1 migrations apply uiua-database --local 82 + command: d1 migrations apply compiles-at-database --local 83 83 workingDirectory: app 84 84 85 85 deploy: ··· 88 88 needs: [check, migrations] 89 89 if: github.ref == 'refs/heads/main' 90 90 env: 91 - BASE_URL: "https://uiua.online" 91 + BASE_URL: "https://compiles.at" 92 92 93 93 steps: 94 94 - name: Checkout sources ··· 116 116 apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 117 117 wranglerVersion: 4.85.0 118 118 packageManager: pnpm 119 - command: d1 migrations apply uiua-database --remote 119 + command: d1 migrations apply compiles-at-database --remote 120 120 workingDirectory: app 121 121 122 122 - name: Deploy
+1 -1
README.md
··· 10 10 code, or the fastest C as an optimization problem, or even the shortest assembly 11 11 generated code (with gcc, no LLVM compilers). 12 12 13 - The app is deployed at [uiua.online](https://uiua.online) (this is a temporary domain name I bought for 0.80$). 13 + The app is deployed at [compiles.at](https://compiles.at). 14 14 15 15 16 16 ## data ownership
+1 -1
app/package.json
··· 1 1 { 2 - "name": "app", 2 + "name": "@compiles.at/app", 3 3 "private": true, 4 4 "type": "module", 5 5 "scripts": {
-15
app/wrangler.jsonc
··· 1 - { 2 - "$schema": "node_modules/wrangler/config-schema.json", 3 - "name": "uiua-app", 4 - "compatibility_date": "2025-09-02", 5 - "compatibility_flags": ["nodejs_compat"], 6 - "main": "@tanstack/solid-start/server-entry", 7 - "d1_databases": [ 8 - { 9 - "binding": "DB", 10 - "database_name": "uiua-database", 11 - "database_id": "9a370035-db3b-41ae-a2bc-89b9897b4bd4", 12 - "migrations_dir": "migrations", 13 - }, 14 - ], 15 - }
+12
app/wrangler.toml
··· 1 + "$schema" = "node_modules/wrangler/config-schema.json" 2 + 3 + name = "compiles-at-app" 4 + compatibility_date = "2026-05-01" 5 + compatibility_flags = ["nodejs_compat"] 6 + main = "@tanstack/solid-start/server-entry" 7 + 8 + [[d1_databases]] 9 + binding = "DB" 10 + database_name = "compiles-at-database" 11 + database_id = "9a370035-db3b-41ae-a2bc-89b9897b4bd4" 12 + migrations_dir = "migrations"
+1 -1
package.json
··· 1 1 { 2 - "name": "uiua", 2 + "name": "compiles.at", 3 3 "private": true, 4 4 "packageManager": "pnpm@11.0.0+sha512.5bd187500e49cc6c3d891d973b432c02b844a5eb7209172c90a517a3ef4f579ed5c23d409b699e6a9dc418ff7b2b1890e63f6d74f1d3fc49848f37779c89c84c", 5 5 "scripts": {