Marcus Hof
Marcus Hof
fixed in: https://github.com/PostHog/posthog.com/pull/7692
> Would also be interested to hear if it's being fixed! @MarconLP @charlescook-ph It's currently not fixed, but you can apply [this simple workaround](https://github.com/PostHog/posthog/issues/7710#issuecomment-1669996908) to solve the issue right now.
+1 https://posthoghelp.zendesk.com/agent/tickets/13723
+1 https://posthog.com/questions/not-getting-insight-in-slack
+1 https://posthoghelp.zendesk.com/agent/tickets/13961
I liked the idea, but I think for Tablane something like this would make more sense: ``` This is a top-level task. - This is a subtask. - And a...
Multi-line paste has been added in this PR: https://github.com/Tablane/tablane/pull/24  It does not detect subtasks, yet
@Bernice55231 The frontend is supposed to run on port 3000 and the backend is supposed to run on port 3001 The `.env.example` for the frontend: ``` ... # server hosts...
The backend start logic: ``` http.listen(process.env.PORT || 3001, () => { console.log(`Listening on port ${process.env.PORT || 3001}`) }) ``` It uses the .env.PORT or 3001 and console.log it accordingly ...
> > The backend start logic: > > ``` > > http.listen(process.env.PORT || 3001, () => { > > console.log(`Listening on port ${process.env.PORT || 3001}`) > > }) > >...