Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions _scripts/sync-template-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ This template ([repo](https://github.com/$OWNER/$NAME)) is a synced replica from
" >> README.md

git add .

# exceptions
if [ "$NAME" = "loco-hello-world" ]; then
git add -f config/production.yaml
fi

git commit -am "Sync $NAME with shuttle-hq/shuttle-examples repo"

git remote add origin git@github.com:$OWNER/$NAME.git
Expand Down
6 changes: 0 additions & 6 deletions fullstack-templates/saas/backend/src/dashboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ pub struct SalesPerDayInfo {
sales_total: i64,
}

#[derive(Deserialize, Serialize, sqlx::FromRow)]
pub struct CustomerInfo {
status: String,
recordcount: i32,
}

#[derive(Deserialize)]
pub struct UserRequest {
pub email: String,
Expand Down
Loading