Skip to content

Commit 44ab81f

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/master'
2 parents 5c0aee3 + 26168a7 commit 44ab81f

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
## Why make this project?
33
Me personally, after HC's neighborhood ended, I just felt the need of a platform where I can log my dev process. And yap about what I've done during the video. And I dearly miss that. And other things happened in life, that made me more connected to Retro, and app that you can upload & remember your memories, however, that app has a paid tier, and it is not based in my (super unstable) home infra. So, I'm making this!
44

5+
## Future changes
6+
1. The text will be Markdown.
7+
2. Adding image & video overlay view when users touch it.
8+
3. Fixing the broken user page (maybe I'll work on it when I have time)
9+
4. Remove Debug text.
10+
5. Bring filtering to life. Including tags, and text (although the postgres index is a bit shotty). This will also include home, search and profile as well.
11+
6. Videos should have a custom UI to it.
12+
7. Short text previews on the home page instead of paragraphs of text taking over user's profile page, edit previews, search previews, and public feed previews.
13+
8. Adding video encoding if possible.
14+
9. Add more stuff that the administrator can just customize.
15+
10. Collections, users can create collections of their trip for example. The home page and search would not include the collection searching.
16+
11. URL Shortening. This software should have an auto url shorting thingy built right in (using /u/[slug]) or byo your own shlink server.
17+
518
## What does this project use?
619
This project uses a lot of libraries (and frameworks)
720
- Next.js 16

apps/web/src/app/u/[slug]/route.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import type { NextRequest } from "next/server";
2+
import {
3+
db,
4+
dorm,
5+
main_schema,
6+
auth_schema,
7+
} from "../../../../../../packages/db/src/index";
8+
9+
export const GET = async (request: NextRequest) => {
10+
return new Response("Sorry, this feature is still WIP!")
11+
}

0 commit comments

Comments
 (0)