Skip to content

Commit 043b16d

Browse files
authored
Merge pull request #7 from purduehackers/ray/refactor-add-dashboard
2 parents 13da642 + 05b97b2 commit 043b16d

21 files changed

+263
-651
lines changed

.github/workflows/fly.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

docker-compose.yml

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,9 @@
11
services:
2-
app:
3-
build:
4-
context: .
5-
dockerfile: Dockerfile
6-
container_name: wack-hacker-app
7-
restart: always
8-
depends_on:
9-
- s3
10-
env_file:
11-
- .env
12-
networks:
13-
- app_network
14-
15-
s3:
16-
image: minio/minio
17-
container_name: wack-hacker-kv
18-
restart: always
19-
env_file:
20-
- .env
21-
ports:
22-
- "9000:9000"
23-
- "9001:9001"
24-
volumes:
25-
- s3_data:/data
26-
command: server --console-address ":9001" /data
27-
networks:
28-
- app_network
29-
30-
volumes:
31-
s3_data:
32-
33-
networks:
34-
app_network:
2+
app:
3+
build:
4+
context: .
5+
dockerfile: Dockerfile
6+
container_name: wack-hacker-app
7+
restart: always
8+
env_file:
9+
- .env

fly.toml

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/commands/admin_check_birthdays.ts

Lines changed: 0 additions & 86 deletions
This file was deleted.

src/commands/admin_get_current_time.ts

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/commands/birthday.ts

Lines changed: 0 additions & 148 deletions
This file was deleted.

src/commands/index.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,11 @@ import type {
33
SlashCommandOptionsOnlyBuilder,
44
} from "discord.js";
55

6-
import * as adminCheckBirthdays from "./admin_check_birthdays";
7-
import * as adminGetCurrentTime from "./admin_get_current_time";
8-
import * as birthday from "./birthday";
9-
import * as removeBirthday from "./remove_birthday";
106
import * as summarize from "./summarize";
117

128
type Command = {
139
data: SlashCommandOptionsOnlyBuilder;
1410
command: (interaction: ChatInputCommandInteraction) => Promise<void>;
1511
};
1612

17-
export const commands: Command[] = [
18-
adminCheckBirthdays,
19-
adminGetCurrentTime,
20-
birthday,
21-
removeBirthday,
22-
summarize,
23-
];
13+
export const commands: Command[] = [summarize];

0 commit comments

Comments
 (0)