Skip to content

Commit

Permalink
Major update
Browse files Browse the repository at this point in the history
  • Loading branch information
leomorpho committed Sep 12, 2024
1 parent 8931301 commit 6bbf9ae
Show file tree
Hide file tree
Showing 57 changed files with 1,026 additions and 118,140 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ data/mailpit.db-shm
data/mailpit.db-wal
data/mailpit.db

# Ignore all JavaScript and CSS files in the static folder and its subdirectories
/static/**/*.js
/static/**/*.js.map
/static/**/*.css
/static/**/*.css.map


# Python ------------------------------------------------------------------------------------------
.venv
venv
Expand Down Expand Up @@ -179,4 +186,6 @@ fastlane/test_output

pwabuilder-android-wrapper/signing-key-info.txt
pwabuilder-android-wrapper/signing.keystore
bubblewrap
bubblewrap


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
🎯 **The goal of this project** is to build the most comprehensive Go-centric OSS starter boilerplate to ship projects fast.

<!-- [![Go Report Card](https://goreportcard.com/badge/github.com/mikestefanello/pagoda)](https://goreportcard.com/report/github.com/mikestefanello/pagoda) -->
[![Test](https://github.com/mikestefanello/pagoda/actions/workflows/test.yml/badge.svg)](https://github.com/mikestefanello/pagoda/actions/workflows/test.yml)
[![Test](https://github.com/leomorpho/GoShip/actions/workflows/test.yml/badge.svg)](https://github.com/leomorpho/GoShip/actions/workflows/test.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)


Expand Down
19 changes: 2 additions & 17 deletions cmd/web/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,21 +78,6 @@ func main() {

seeder.RunIdempotentSeeder(c.Config, c.ORM)

// Start the startup tasks
// if err := c.Tasks.
// New(tasks.TypePopulateAllProfileMatches).
// Retain(24 * time.Hour).
// Save(); err != nil {
// c.Web.Logger.Fatalf("failed to run startup task: %v", err)
// }

// if err := c.Tasks.
// New(tasks.TypeEmailUpdates).
// Retain(24 * time.Hour).
// Save(); err != nil {
// c.Web.Logger.Fatalf("failed to run startup task: %v", err)
// }

// Start the scheduled tasks
if err := c.Tasks.
New(tasks.TypeDeactivateExpiredSubscriptions).
Expand All @@ -110,10 +95,10 @@ func main() {
Save(); err != nil {
c.Web.Logger.Fatalf("failed to register scheduler task: %v", err)
}
// NOTE: we run the following task every 30 minutes, but it will check if the same notif type has
// not already been sent to profiles.
if err := c.Tasks.
New(tasks.TypeAllDailyConvoNotifications).
// NOTE: we run this task every 30 minutes, but it will check if the same notif type has
// not already been sent to profiles.
Periodic("@every 30m").
Timeout(120 * time.Second).
Retain(24 * time.Hour).
Expand Down
190 changes: 0 additions & 190 deletions javascript/svelte/components/AnswerWriter.svelte

This file was deleted.

Loading

0 comments on commit 6bbf9ae

Please sign in to comment.