Skip to content

Commit

Permalink
Merge branch 'main' into home-page-button-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
alderwhiteford authored Dec 8, 2023
2 parents 911ca35 + 1e20e6f commit 8a8322d
Show file tree
Hide file tree
Showing 71 changed files with 10,788 additions and 5,786 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ backend-dev: db-dev
backend-dev-reset: db-dev
wgo -exit clear :: go run -tags dev . -db mongodb://administrator:[email protected]:27017 -reset

# Start the backend dev server but connect to cloud database
.PHONY: backend-dev-cloud
backend-dev-cloud:
wgo -exit clear :: go run -tags dev . -db mongodb+srv://administrator:[email protected]/?retryWrites=true&w=majority

# Start the dev database
.PHONY: db-dev
db-dev:
Expand Down
1 change: 1 addition & 0 deletions backend/schema/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ type Job struct {
Price int `bson:"price,omitempty" json:"price"`
Shipping int `bson:"shipping,omitempty" json:"shipping"`
Taxes int `bson:"taxes,omitempty" json:"taxes"`
Tracking string `bson:"tracking,omitempty" json:"tracking"`
Color string `bson:"color,omitempty" json:"color"`
Filament FilamentType `bson:"filament,omitempty" json:"filament"`
LayerHeight float64 `bson:"layerHeight,omitempty" json:"layerHeight"`
Expand Down
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.13",
"@radix-ui/react-slot": "^1.0.2",
"@react-google-maps/api": "^2.19.2",
"@react-oauth/google": "^0.11.1",
"@reduxjs/toolkit": "^1.9.7",
"@stripe/react-stripe-js": "^2.4.0",
Expand Down
Loading

0 comments on commit 8a8322d

Please sign in to comment.