Casvt / MIND

A simple self hosted reminder application that can send push notifications to your device. Set the reminder and forget about it!
https://casvt.github.io/MIND/
GNU General Public License v3.0
201 stars 10 forks source link

Manual Install - SyntaxError: invalid syntax #61

Closed VlaK0r closed 10 months ago

VlaK0r commented 1 year ago

Hello! Thank you for your work

I can't start the program, it gives an error.

python3 MIND.py Traceback (most recent call last): File "MIND.py", line 15, in from frontend.api import api, api_prefix, reminder_handler File "/opt/MIND/frontend/api.py", line 21, in from backend.notification_service import (NotificationService, File "", line 1 (title=) ^ SyntaxError: invalid syntax

Casvt commented 1 year ago

When I run python3 MIND.py, it runs fine. That means that your setup differs from mine in some way that leads to the error. What I find very weird in the traceback that you're supplying is the following:

File "", line 1
(title=)

Between the quotes, there should be a file listed. On top, there is no file that has (title=) at line 1 (like the traceback suggests). There is no file at all that has (title=) anywhere in them.


Because you can run the MIND.py file, it seems like /opt/MIND has sufficient permissions and ownership. Please check that the following sub-folders also have sufficient permissions and ownership: backend/, db/, frontend/.