commit
f21033bd7a
|
@ -8,7 +8,6 @@ PAGINATION_TAKE_COUNT=
|
||||||
STORAGE_FOLDER=
|
STORAGE_FOLDER=
|
||||||
AUTOSCROLL_TIMEOUT=
|
AUTOSCROLL_TIMEOUT=
|
||||||
NEXT_PUBLIC_DISABLE_REGISTRATION=
|
NEXT_PUBLIC_DISABLE_REGISTRATION=
|
||||||
IMPORT_SIZE_LIMIT=
|
|
||||||
RE_ARCHIVE_LIMIT=
|
RE_ARCHIVE_LIMIT=
|
||||||
|
|
||||||
# AWS S3 Settings
|
# AWS S3 Settings
|
||||||
|
|
11
README.md
11
README.md
|
@ -37,22 +37,23 @@ We highly recommend that you don't use the old version because it is no longer m
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- 📸 Auto capture a screenshot and a PDF of each link.
|
- 📸 Auto capture a screenshot, PDF, and readable view of each webpage.
|
||||||
- 🏛️ Send your webpage to Wayback Machine ([archive.org](https://archive.org)) for a snapshot. (Optional)
|
- 🏛️ Send your webpage to Wayback Machine ([archive.org](https://archive.org)) for a snapshot. (Optional)
|
||||||
- 📂 Organize links by collection, name, description and multiple tags.
|
- 📂 Organize links by collection, name, description and multiple tags.
|
||||||
- 👥 Collaborate on gathering links in a collection.
|
- 👥 Collaborate on gathering links in a collection.
|
||||||
- 🔐 Customize the permissions of each member.
|
- 🔐 Customize the permissions of each member.
|
||||||
- 🌐 Share your collected links with the world.
|
- 🌐 Share your collected links with the world.
|
||||||
- 📌 Pin your favorite links to dashboard.
|
- 📌 Pin your favorite links to dashboard.
|
||||||
- 🔍 Search, filter and sort by link details.
|
- 🔍 Full text search, filter and sort for easy retrieval.
|
||||||
- 📱 Responsive design and supports most browsers.
|
- 📱 Responsive design and supports most modern browsers.
|
||||||
- 🌓 Dark/Light mode support.
|
- 🌓 Dark/Light mode support.
|
||||||
- 🧩 Browser extension, managed by the community [check it out!](https://github.com/linkwarden/browser-extension)
|
- 🧩 Browser extension, managed by the community. [Star it here!](https://github.com/linkwarden/browser-extension)
|
||||||
- ⬇️ Import your bookmarks from other browsers.
|
- ⬇️ Import your bookmarks from other browsers.
|
||||||
|
- ⚡️ Powerful API.
|
||||||
|
|
||||||
## Suggestions
|
## Suggestions
|
||||||
|
|
||||||
We usually go after the [popular suggestions](https://github.com/linkwarden/linkwarden/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc). Feel free to open a [new issue](https://github.com/linkwarden/linkwarden/issues/new?assignees=&labels=enhancement&projects=&template=feature_request.md&title=) to suggest one - others might be interested too! :)
|
We _usually_ go after the [popular suggestions](https://github.com/linkwarden/linkwarden/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc). Feel free to open a [new issue](https://github.com/linkwarden/linkwarden/issues/new?assignees=&labels=enhancement&projects=&template=feature_request.md&title=) to suggest one - others might be interested too! :)
|
||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
|
||||||
|
|
|
@ -71,9 +71,9 @@ async function migrateToV2() {
|
||||||
where: { id: user.id },
|
where: { id: user.id },
|
||||||
data: { image: path },
|
data: { image: path },
|
||||||
});
|
});
|
||||||
console.log(`Updated avatar for avatar ${user.id}`);
|
console.log(`${user.id}`);
|
||||||
} else {
|
} else {
|
||||||
console.log(`No avatar found for avatar ${user.id}`);
|
console.log(`${user.id}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,9 +90,9 @@ async function migrateToV2() {
|
||||||
where: { id: link.id },
|
where: { id: link.id },
|
||||||
data: { pdfPath: path },
|
data: { pdfPath: path },
|
||||||
});
|
});
|
||||||
console.log(`Updated capture for pdf ${link.id}`);
|
console.log(`${link.id}`);
|
||||||
} else {
|
} else {
|
||||||
console.log(`No capture found for pdf ${link.id}`);
|
console.log(`${link.id}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,9 +107,9 @@ async function migrateToV2() {
|
||||||
where: { id: link.id },
|
where: { id: link.id },
|
||||||
data: { screenshotPath: path },
|
data: { screenshotPath: path },
|
||||||
});
|
});
|
||||||
console.log(`Updated capture for screenshot ${link.id}`);
|
console.log(`${link.id}`);
|
||||||
} else {
|
} else {
|
||||||
console.log(`No capture found for screenshot ${link.id}`);
|
console.log(`${link.id}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import verifyUser from "@/lib/api/verifyUser";
|
||||||
export const config = {
|
export const config = {
|
||||||
api: {
|
api: {
|
||||||
bodyParser: {
|
bodyParser: {
|
||||||
sizeLimit: `${process.env.IMPORT_SIZE_LIMIT || "5"}mb`,
|
sizeLimit: "10mb",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,7 +8,6 @@ declare global {
|
||||||
PAGINATION_TAKE_COUNT?: string;
|
PAGINATION_TAKE_COUNT?: string;
|
||||||
STORAGE_FOLDER?: string;
|
STORAGE_FOLDER?: string;
|
||||||
AUTOSCROLL_TIMEOUT?: string;
|
AUTOSCROLL_TIMEOUT?: string;
|
||||||
IMPORT_SIZE_LIMIT?: string;
|
|
||||||
RE_ARCHIVE_LIMIT?: string;
|
RE_ARCHIVE_LIMIT?: string;
|
||||||
|
|
||||||
SPACES_KEY?: string;
|
SPACES_KEY?: string;
|
||||||
|
|
Ŝarĝante…
Reference in New Issue