···11-Copyright (c) 2024 Aquareum.
11+Copyright (c) 2024 Streamplace.
2233Permission is hereby granted, free of charge, to any person obtaining a copy
44of this software and associated documentation files (the "Software"), to deal
···11-# Aquareum
11+# Streamplace
2233## The Video Layer for Everything
44···21212222```
2323make node
2424-./build-darwin-arm64/aquareum
2424+./build-darwin-arm64/streamplace
25252626// or
27272828-./build-linux-amd64/aquareum
2828+./build-linux-amd64/streamplace
2929```
30303131**Web Development**
···5656that happen, you can set the `AQ_APP_SCHEME` environment variable to the scheme
5757you want to use; it must match reverse of the URL of a publicly accessible
5858server with an HTTPS cert. So, if you're exposing your app on
5959-aquareum.example.com, you could run the app with
5959+streamplace.example.com, you could run the app with
60606161```
6262-export AQ_APP_SCHEME=com.example.aquareum
6262+export AQ_APP_SCHEME=com.example.streamplace
6363yarn run app ios
6464```
6565···7777```
78787979Adding those two environment variables to your shell will give your desktop app
8080-administrative access over your local Aquareum node.
8080+administrative access over your local Streamplace node.
···1212//go:embed package.json
1313var pkg []byte
14141515-// fetch a static snapshot of the current Aquareum web app
1515+// fetch a static snapshot of the current Streamplace web app
1616func Files() (fs.FS, error) {
1717 rootFiles, err := fs.Sub(AllFiles, "dist")
1818 if err != nil {
···11-# Aquareum Desktop
11+# Streamplace Desktop
2233## `yarn run start`
4455-Boot up Aquareum Desktop for development. Two environment variable options:
55+Boot up Streamplace Desktop for development. Two environment variable options:
6677-- `AQD_SKIP_NODE`: (default `false`): Skip booting up an Aquareum node from
77+- `AQD_SKIP_NODE`: (default `false`): Skip booting up an Streamplace node from
88 within the app so you can just test the app against the node you're already
99 running locally.
10101111-- `AQD_NODE_FRONTEND`: (default `false`): Use frontend bundled with the Aquareum
1212- node instead of the dev server on `http://localhost:8081`.
1111+- `AQD_NODE_FRONTEND`: (default `false`): Use frontend bundled with the
1212+ Streamplace node instead of the dev server on `http://localhost:8081`.
···205205 return glog.V(level)
206206}
207207208208-// returns filenames relative to aquareum root
208208+// returns filenames relative to streamplace root
209209// e.g. handlers/misttriggers/triggers.go:58
210210func caller(depth int) string {
211211 _, myfile, _, _ := runtime.Caller(0)
212212- // This assumes that the root directory of aquareum is two levels above this folder.
212212+ // This assumes that the root directory of streamplace is two levels above this folder.
213213 // If that changes, please update this rootDir resolution.
214214 rootDir := filepath.Join(filepath.Dir(myfile), "..", "..")
215215 _, file, line, _ := runtime.Caller(depth)
···88 "strings"
99 "time"
10101111- "aquareum.tv/aquareum/pkg/log"
1111+ "stream.place/streamplace/pkg/log"
1212)
13131414// how many segments are served in the live playlist?