You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<divalign="center">
2
2
<h1align="center">Postgres WASM</h1>
3
-
<palign="center">A PostgresQL server instance running in a virtual machine running in the browser<br />
3
+
<palign="center">A PostgreSQL server instance running in a virtual machine running in the browser<br />
4
4
<i>by Supabase & Snaplet</i></p>
5
5
<imgalign="center"src="https://user-images.githubusercontent.com/90199159/192729860-730e89a9-2489-4a95-a814-25eaaebebb7d.png"alt="Snaplet, Supabase and friends"width="480">
6
6
<br /><br />
@@ -24,7 +24,7 @@ Go to http://localhost:3000 and have fun!
24
24
25
25
## Packages
26
26
27
-
This repo is split into three packages that build up the environment for running PostgresQL in the browser.
27
+
This repo is split into three packages that build up the environment for running PostgreSQL in the browser.
28
28
29
29
-[runtime](/packages/runtime): The v86 emulator that starts the `buildroot` image
30
30
-[Buildroot](/packages/buildroot): Scripts to build the CPU and memory snapshot run by v86.
Copy file name to clipboardexpand all lines: packages/websockproxy/README.md
+11
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,14 @@
1
+
# INSTALLING
2
+
If you want to install the proxy server on your own server, here's the easiest way to get started:
3
+
4
+
1. Start with an Ubuntu 20.04 server instance. This is the only configuration that's currently tested. Ubuntu 22.04 will not work, as it uses `OpenSSL 3.0` which is not compatible with the docker image's versons of `OpenSSL` and `nginx`.
5
+
2. Make sure Docker is installed. (see install_docker.sh for installing Docker on Ubuntu 20.04 amd64)
6
+
3. Make sure the DNS for your domain points to this new server. (Use an `A` record.)
7
+
4. Copy the `install.sh` file to the server.
8
+
5. Modify the first two lines of `install.sh` to set your `PROXY_DOMAIN` and `PROXY_DOMAIN_SUPPORT_EMAIL`.
9
+
6. Execute the `install.sh` script on the server.
10
+
11
+
1
12
# WebSockets Proxy
2
13
3
14
A websocket ethernet switch built using Tornado in Python
0 commit comments