Skip to content

Commit

Permalink
chore(deployment): build push complex service images
Browse files Browse the repository at this point in the history
  • Loading branch information
neilscallywag committed Apr 22, 2024
1 parent 338a49e commit f7b7810
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/EchoSkorJjj/IS213-Education-Helper/handle-temporary-contents/pb/contents"
)


type ContentClient struct {
Conn *grpc.ClientConn
Stub contents.ContentClient
Expand Down
1 change: 1 addition & 0 deletions backend/complex/make-payment/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
makepaymentPb "github.com/EchoSkorJjj/IS213-Education-Helper/make-payment/pb/make_payment"
)


func main() {
err := godotenv.Load()
if err != nil {
Expand Down
3 changes: 2 additions & 1 deletion backend/complex/save-notes/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ def main():
dotenv.load_dotenv()
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')

main()
main()

Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ public class UploadNotesApplication {
public static void main(String[] args) {
SpringApplication.run(UploadNotesApplication.class, args);
}

}
1 change: 1 addition & 0 deletions backend/complex/verify-user/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
verifyuserPb "github.com/EchoSkorJjj/IS213-Education-Helper/verify-user/pb/verify_user"
)


func main() {
err := godotenv.Load()
if err != nil {
Expand Down
3 changes: 2 additions & 1 deletion backend/complex/view-notes/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ def main():
dotenv.load_dotenv()
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')

main()
main()

0 comments on commit f7b7810

Please sign in to comment.