Skip to content

Commit

Permalink
Merge pull request #114 from CSSE6400/86
Browse files Browse the repository at this point in the history
86
  • Loading branch information
86LAK authored May 26, 2024
2 parents f06d18c + c36b391 commit d2c6ede
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 17 deletions.
1 change: 0 additions & 1 deletion backend/src/routes/helpfulFriends.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export function single_nest(commentRows: IComment[], commentId: number) {
const bucketName = process.env.S3_BUCKET_NAME;
const bucketUrl = process.env.S3_BUCKET_URL;
const region = process.env.AWS_REGION;
// TODO: add creds here
const s3Client = new S3Client({
region,
credentials: fromContainerMetadata(),
Expand Down
1 change: 0 additions & 1 deletion frontend/src/api/usePostQuestion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default function usePostQuestion(examId: number) {
if (questionText) {
formData.append('questionText', questionText);
}
// TODO: update this to take questionType as input
formData.append('questionType', 'Short Answer');

// send the question
Expand Down
15 changes: 0 additions & 15 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,6 @@ resource "random_string" "auth0_secret" {
special = true
}

#TODO need scalability stuff for front, back db ?

resource "aws_security_group" "unibasement_frontend" {
name = "unibasement_frontend"
description = "unibasement Security Group"
Expand Down Expand Up @@ -562,19 +560,6 @@ resource "aws_route53_record" "unibasement" {
}
}



resource "local_file" "url" {
content = "http://${aws_lb.unibasement.dns_name}:3000/"
filename = "./unibasement.txt"
}

output "url" {
value = "http://${aws_lb.unibasement.dns_name}:3000/"
}



////////////////////////////// Miscellaneous ///////////////////////////////////


Expand Down

0 comments on commit d2c6ede

Please sign in to comment.