Skip to content

Commit 3126611

Browse files
More docs
1 parent ca77f22 commit 3126611

21 files changed

+240
-67
lines changed

content/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
22
title: Crash
3-
toc: false
43
---
54

65
Welcome to the Crash Docs.
76

87
## Explore
98

109
{{< cards >}}
11-
{{< card link="docs" title="Docs" icon="book-open" >}}
10+
{{< card link="docs/installation" title="Docs" icon="book-open" >}}
1211
{{< card link="about" title="About" icon="user" >}}
1312
{{< /cards >}}

content/about.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: About
33
type: about
4+
toc: true
45
---
56

67
Crash is a labour of love.

content/docs/advanced/changes.md

Whitespace-only changes.
957 KB
Loading

content/docs/advanced/creating-a-model.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
title: Deploying Crash
3+
type: docs
4+
prev: docs/folder/
5+
next: docs/advanced/
6+
toc: true
7+
---
8+
9+
{{< callout emoji="⚠️" >}}
10+
Crash does not offer an authentication system (… yet …), if someone knows the URL they can join!
11+
{{< /callout >}}
12+
13+
## Deploy Crash
14+
15+
### Choose a Crash Release
16+
17+
{{< tabs items="Exe,Docker" >}}
18+
19+
{{< tab >}}**Exe**:
20+
21+
{{< callout emoji="⚠️" >}}
22+
crash.server is only released for Windows currently. If you need a linux build you can build it from source easily.
23+
{{< /callout >}}
24+
25+
- Download a copy of Crash.Server from [Releases](https://github.com/crashcloud/crash.server/releases)
26+
- Extract the `.zip`
27+
- Open terminal and cd into `crash.server`
28+
- Run the `crash.server.exe` executable
29+
- running `.\crash.server.exe --help` will provide useful information that is more up to date than I can keep here
30+
- By default crash will run on `http://0.0.0.0:8080 or http://localhost:8080`
31+
32+
{{< /tab >}}
33+
34+
{{< tab >}}**Docker**:
35+
36+
```bash
37+
docker pull crashserver/crash.server
38+
39+
docker run -p 8080:8080 crashserver/crash.server
40+
```
41+
42+
{{< /tab >}}
43+
44+
{{< /tabs >}}
45+
46+
## Hosting
47+
48+
{{< tabs items="Locally,Azure" >}}
49+
50+
{{< tab >}}**Locally**:
51+
52+
- Follow steps above.
53+
54+
{{< /tab >}}
55+
56+
{{< tab >}}**Azure**:
57+
58+
Crash can be hosted easily using Azure and creating a Web App.
59+
60+
{{< cards >}}
61+
{{< card link="https://www.youtube.com/watch?v=_LNOg8kU4CE" title="Creating an Azure Web App" icon="book-open" >}}
62+
{{< /cards >}}
63+
64+
{{< /tab >}}
65+
66+
{{< /tabs >}}
67+
68+
## Validation
69+
70+
Visit the url of the Crash server on your Computer, if you can see this page, you can join the server!
71+
72+
![Crash Splash](crash-splash.png)

content/docs/concepts/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: concepts
2+
title: Concepts
33
type: docs
44
prev: docs/
55
sidebar:
66
open: true
77
---
88

9-
Pages can be organized into folders.
9+
A collection of information about crash concepts.

content/docs/concepts/changes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@ prev: docs/folder/
66

77
Changes are how Crash captures a change during Rhinos runtime. This can be a box being transformed, a Grasshopper component being added to the canvas, or anything you need to communicate to other users of a Shared Model. These changes can even be completely independent of the Rhino Doc.
88

9-
# Examples
9+
# Examples of a potential change
10+
11+
- Selecting an Object
12+
- Deleting an Object
13+
- Changing the Layer of an Object

content/docs/concepts/release.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Release
3+
type: docs
4+
prev: docs/folder/
5+
---

content/docs/concepts/shared-model.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Shared Model
3+
type: docs
4+
prev: docs/folder/
5+
---

0 commit comments

Comments
 (0)