RoccoSmit
RoccoSmit
Similar issue https://github.com/usememos/memos/issues/3988
What are you using for storage (s3 vs local) and what db are you using. A default install should have all your files (sqlite db file and cache folder for...
@davidtavarez , I believe the MySQL failure on upgrade might relate to a different issue. Can you have a look at this issue and see if your scenario aligns with...
Have you tried using the docker compose file in the [docs](https://www.usememos.com/docs/install/database#docker-compose-example)? And if that works build from there?
To add to @johnnyjoygh 's comment. I believe there are 2 places to take into consideration. At registration the expiry is set to 7 days in the future, subsequent logins...
I found the reference to the two locations https://github.com/usememos/memos/issues/4009#issuecomment-2412696560
@JodhwaniMadhur, out of interest, how are you intending to capture a large range of expiry possibilities? Current expiry is in days (multiplied for years), OP seems like they need expiry...
The access token is passed to the FE on signin and is stored in a cookie. Creating new tokens are done on the BE in `auth_service.go`. There are many moving...
The reasons I suggested tracking changes on the FE were: 1) Features call the API multiple times to get all required data, e.g. the memolist API endpoint is called 2...
Duplicate of https://github.com/usememos/memos/issues/3885 See the following pr for more info on how to resolve this https://github.com/usememos/memos/pull/3873