Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

Commit 6e97a1c

Browse files
authored
Merge branch 'master' into protocol
2 parents 7cdbf0f + cc1f8e8 commit 6e97a1c

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
* @MarcelCoding
2-
*.md @MarcelCoding @cryptic-game/text
1+
* @JannikEmmerich @MarcelCoding
2+
*.md @cryptic-game/text @JannikEmmerich @MarcelCoding
3+
/docs/python/ @cryptic-game/text @cryptic-game/head-of-python-backend @cryptic-game/head-assistant-of-python-backend @Defelo
4+
/docs/java/ @cryptic-game/text @cryptic-game/head-of-java-backend @cryptic-game/head-assistant-of-java-backend

docs/deployment/index.md

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Public Instances
2+
3+
The team behind Cryptic is currently hosting two instances of Cryptic.
4+
5+
## Production Instance
6+
7+
The production instance is the instance where the actual game takes place.
8+
This instance is always running the latest stable version.
9+
10+
| Endpoint | Description |
11+
|------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
12+
| [`https://play.cryptic-game.net`](https://play.cryptic-game.net) | The offical frontend. |
13+
| `wss://server.cryptic-game.net/ws` | The actual api for the frontend. ([Learn more](../protocol/websocket.md)) |
14+
| [`https://server.cryptic-game.net/api`](https://server.cryptic-game.net/api) | The rest api for the game. (e.g. authentication, statistics, [Learn more](../protocol/rest.md)) |
15+
16+
## Staging Instance
17+
18+
The staging instance is the instance on which the game is tested. It is not recommended to play seriously on this instance.
19+
The database is reset periodically and money and other resources are freely distributed by developers to test new features.
20+
This instance is always running the current latest **unstable** version.
21+
22+
| Endpoint | Description |
23+
|----------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
24+
| [`https://play.staging.cryptic-game.net`](https://play.staging.cryptic-game.net) | The offical frontend. |
25+
| `wss://server.staging.cryptic-game.net/ws` | The actual api for the frontend. ([Learn more](../protocol/websocket.md)) |
26+
| [`https://server.staging.cryptic-game.net/api`](https://server.staging.cryptic-game.net/api) | The rest api for the game. (e.g. authentication, statistics [Learn more](../protocol/rest.md)) |

mkdocs.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
site_name: Cryptic Documentation
2-
repo_url: https://github.com/cryptic-game/docs
32
repo_name: cryptic-game/docs
4-
edit_uri: edit/main/docs/
3+
repo_url: https://github.com/cryptic-game/docs
4+
edit_uri: edit/master/docs/
55

66
theme:
77
name: material
88
# logo: assets/logo.svg
99
favicon: assets/favicon.ico
10+
font:
11+
text: Public Sans
12+
code: Roboto Mono
1013
palette:
1114
primary: light green
1215
accent: deep orange
@@ -30,7 +33,7 @@ plugins:
3033
- git-revision-date
3134
- redirects:
3235
redirect_maps:
33-
'index.md': 'infrastructure/index.md'
36+
'index.md': 'deployment/public-instances.md'
3437
- minify:
3538
minify_html: true
3639
minify_js: true

0 commit comments

Comments
 (0)