aboutsummaryrefslogtreecommitdiff
path: root/vnext/server/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/server/index.js')
-rw-r--r--vnext/server/index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/vnext/server/index.js b/vnext/server/index.js
index eaf1ae8a..d58fe4c7 100644
--- a/vnext/server/index.js
+++ b/vnext/server/index.js
@@ -15,6 +15,7 @@ import { instance } from './middleware/mastodon'
const PORT = process.env.LISTEN_PORT || 8081
import path from 'path'
import { webhook, webhookPath } from './durov'
+import { get_count } from './db/users'
// initialize the application and create the routes
const app = express()
@@ -49,6 +50,9 @@ router.use('*', serverRenderer)
app.use(router)
+get_count().then(count => {
+ log(`Registered users: ${JSON.stringify(count)}`)
+}).catch(log)
// start the app
app.listen(PORT, (error) => {