diff --git a/stream/backend/main.py b/backend/main.py similarity index 100% rename from stream/backend/main.py rename to backend/main.py diff --git a/stream/backend/migrations/20240719191810_init/migration.sql b/backend/migrations/20240719191810_init/migration.sql similarity index 100% rename from stream/backend/migrations/20240719191810_init/migration.sql rename to backend/migrations/20240719191810_init/migration.sql diff --git a/stream/backend/migrations/migration_lock.toml b/backend/migrations/migration_lock.toml similarity index 100% rename from stream/backend/migrations/migration_lock.toml rename to backend/migrations/migration_lock.toml diff --git a/stream/backend/schema.prisma b/backend/schema.prisma similarity index 100% rename from stream/backend/schema.prisma rename to backend/schema.prisma diff --git a/review/README.md b/review/README.md deleted file mode 100644 index 50968a3..0000000 --- a/review/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Review Helpers - -This directory is a placeholder for future review automation tools! diff --git a/stream/README.md b/stream/README.md deleted file mode 100644 index b3da6d1..0000000 --- a/stream/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Stream utilities - -In this folder, you'll find all the scripts, tools, and programs that are needed to operate the OnBoard Live stream. diff --git a/stream/keygen/main.py b/stream/keygen/main.py deleted file mode 100644 index 8d3c18a..0000000 --- a/stream/keygen/main.py +++ /dev/null @@ -1,30 +0,0 @@ -import secrets -import requests -import pickle - -users = {} - -with open('users.dat', 'rb') as f: - users = pickle.load(f) - -def add_stream(stream): - requests.post('http://127.0.0.1:9997/v3/config/paths/add/' + stream, json={'name': stream}) - -def main(): - print(users) - for user in users.values(): - add_stream(user) - while True: - new_user = input('Enter new user\'s Slack ID: ') - if new_user in users: - print('User already exists.') - continue - users[new_user] = secrets.token_hex(32) - print(users[new_user]) - add_stream(users[new_user]) - with open('users.dat', 'wb') as f: - pickle.dump(users, f) - - -if __name__ == '__main__': - main() diff --git a/stream/tiling-frontend/README.md b/tiling-frontend/README.md similarity index 100% rename from stream/tiling-frontend/README.md rename to tiling-frontend/README.md diff --git a/stream/tiling-frontend/bun.lockb b/tiling-frontend/bun.lockb similarity index 100% rename from stream/tiling-frontend/bun.lockb rename to tiling-frontend/bun.lockb diff --git a/stream/tiling-frontend/index.html b/tiling-frontend/index.html similarity index 100% rename from stream/tiling-frontend/index.html rename to tiling-frontend/index.html diff --git a/stream/tiling-frontend/package.json b/tiling-frontend/package.json similarity index 100% rename from stream/tiling-frontend/package.json rename to tiling-frontend/package.json diff --git a/stream/tiling-frontend/postcss.config.js b/tiling-frontend/postcss.config.js similarity index 100% rename from stream/tiling-frontend/postcss.config.js rename to tiling-frontend/postcss.config.js diff --git a/stream/tiling-frontend/src/App.svelte b/tiling-frontend/src/App.svelte similarity index 100% rename from stream/tiling-frontend/src/App.svelte rename to tiling-frontend/src/App.svelte diff --git a/stream/tiling-frontend/src/app.css b/tiling-frontend/src/app.css similarity index 100% rename from stream/tiling-frontend/src/app.css rename to tiling-frontend/src/app.css diff --git a/stream/tiling-frontend/src/main.ts b/tiling-frontend/src/main.ts similarity index 100% rename from stream/tiling-frontend/src/main.ts rename to tiling-frontend/src/main.ts diff --git a/stream/tiling-frontend/src/vite-env.d.ts b/tiling-frontend/src/vite-env.d.ts similarity index 100% rename from stream/tiling-frontend/src/vite-env.d.ts rename to tiling-frontend/src/vite-env.d.ts diff --git a/stream/tiling-frontend/svelte.config.js b/tiling-frontend/svelte.config.js similarity index 100% rename from stream/tiling-frontend/svelte.config.js rename to tiling-frontend/svelte.config.js diff --git a/stream/tiling-frontend/tailwind.config.js b/tiling-frontend/tailwind.config.js similarity index 100% rename from stream/tiling-frontend/tailwind.config.js rename to tiling-frontend/tailwind.config.js diff --git a/stream/tiling-frontend/tsconfig.json b/tiling-frontend/tsconfig.json similarity index 100% rename from stream/tiling-frontend/tsconfig.json rename to tiling-frontend/tsconfig.json diff --git a/stream/tiling-frontend/tsconfig.node.json b/tiling-frontend/tsconfig.node.json similarity index 100% rename from stream/tiling-frontend/tsconfig.node.json rename to tiling-frontend/tsconfig.node.json diff --git a/stream/tiling-frontend/vite.config.ts b/tiling-frontend/vite.config.ts similarity index 100% rename from stream/tiling-frontend/vite.config.ts rename to tiling-frontend/vite.config.ts