dev -> beta
This commit is contained in:
parent
e976da6b1e
commit
ce804986ee
|
@ -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.:
|
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)
|
- [beta.semaphore.social/report.html](https://beta.semaphore.social/report.html)
|
||||||
- [dev.semaphore.social/stats.json](https://dev.semaphore.social/stats.json)
|
- [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`.
|
This is also available locally after `yarn run build` at `.sapper/client/report.html`.
|
||||||
|
|
||||||
## Deploying
|
## 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.
|
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`.
|
branch deploys to `semaphore.social`.
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
|
@ -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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ export const USERNAME_LOWERCASE = '__semaphore_acct_lc'
|
||||||
|
|
||||||
export const DB_VERSION_INITIAL = 9
|
export const DB_VERSION_INITIAL = 9
|
||||||
export const DB_VERSION_SEARCH_ACCOUNTS = 10
|
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
|
// Using an object for these so that unit tests can change them
|
||||||
export const DB_VERSION_CURRENT = { version: 12 }
|
export const DB_VERSION_CURRENT = { version: 12 }
|
||||||
|
|
|
@ -16,7 +16,7 @@ export const USERNAME_LOWERCASE = '__semaphore_acct_lc'
|
||||||
|
|
||||||
export const DB_VERSION_INITIAL = 9
|
export const DB_VERSION_INITIAL = 9
|
||||||
export const DB_VERSION_SEARCH_ACCOUNTS = 10
|
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
|
// Using an object for these so that unit tests can change them
|
||||||
export const DB_VERSION_CURRENT = { version: 12 }
|
export const DB_VERSION_CURRENT = { version: 12 }
|
||||||
|
|
Loading…
Reference in New Issue