dev -> beta

This commit is contained in:
Nick Colley 2023-01-10 14:22:26 +00:00
parent e976da6b1e
commit ce804986ee
4 changed files with 7 additions and 7 deletions

View File

@ -148,17 +148,17 @@ To disable minification in a production build (for debugging purposes), you can
The Webpack Bundle Analyzer `report.html` and `stats.json` are available publicly via e.g.:
- [dev.semaphore.social/report.html](https://dev.semaphore.social/report.html)
- [dev.semaphore.social/stats.json](https://dev.semaphore.social/stats.json)
- [beta.semaphore.social/report.html](https://beta.semaphore.social/report.html)
- [beta.semaphore.social/stats.json](https://beta.semaphore.social/stats.json)
This is also available locally after `yarn run build` at `.sapper/client/report.html`.
## Deploying
This section only applies to `dev.semaphore.social` and `semaphore.social`, not if you're hosting your own version of
This section only applies to `beta.semaphore.social` and `semaphore.social`, not if you're hosting your own version of
Semaphore.
The site uses [Vercel](https://vercel.com). The `master` branch publishes to `dev.semaphore.social` and the `production`
The site uses [Vercel](https://vercel.com). The `master` branch publishes to `beta.semaphore.social` and the `production`
branch deploys to `semaphore.social`.
## Architecture

View File

@ -8,7 +8,7 @@ Credit must go to Nolan and the original contributors for their excellent work.
An alternative web client for [Mastodon](https://joinmastodon.org), focused on speed and simplicity.
Semaphore is available at [semaphore.social](https://semaphore.social). Beta releases are at [dev.semaphore.social](https://dev.semaphore.social).
Semaphore is available at [semaphore.social](https://semaphore.social). Beta releases are at [beta.semaphore.social](https://beta.semaphore.social).
See the [user guide](https://github.com/nolanlawson/semaphore/blob/master/docs/User-Guide.md) for basic usage. See the [admin guide](https://github.com/nolanlawson/semaphore/blob/master/docs/Admin-Guide.md) if Semaphore cannot connect to your instance.

View File

@ -16,7 +16,7 @@ export const USERNAME_LOWERCASE = '__semaphore_acct_lc'
export const DB_VERSION_INITIAL = 9
export const DB_VERSION_SEARCH_ACCOUNTS = 10
export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to dev.semaphore.social
export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to beta.semaphore.social
// Using an object for these so that unit tests can change them
export const DB_VERSION_CURRENT = { version: 12 }

View File

@ -16,7 +16,7 @@ export const USERNAME_LOWERCASE = '__semaphore_acct_lc'
export const DB_VERSION_INITIAL = 9
export const DB_VERSION_SEARCH_ACCOUNTS = 10
export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to dev.semaphore.social
export const DB_VERSION_SNOWFLAKE_IDS = 12 // 11 skipped because of mistake deployed to beta.semaphore.social
// Using an object for these so that unit tests can change them
export const DB_VERSION_CURRENT = { version: 12 }