Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m7medvision/nightmovie
https://github.com/m7medvision/nightmovie
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/m7medvision/nightmovie
- Owner: m7medVision
- Created: 2024-05-21T09:26:58.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-02T08:20:19.000Z (6 months ago)
- Last Synced: 2024-06-02T09:36:52.302Z (6 months ago)
- Language: TypeScript
- Size: 770 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### NighMovie
NighMovie is Open Source project that allows to get suggestions for movies based on the user's movies ratings. This project is based on Google LLM's (gemini) model.### Installation
To install the project you need to install [Node.js](https://nodejs.org/en/). After that you can run the following commands:
```bash
npm install
```
Then, edit the .env file and add the following variables:
```bash
DATABASE_URI=mongodb://127.0.0.1/payload-template-blank-3-0
PAYLOAD_SECRET=YOUR_SECRET_HERE
GOOGLE_GEN_AI_API_KEY=HERE_API
```
To run the project you can use the following command:
```bash
npm dev
```
### TODO:
- [ ] add rating input for the user.
- [ ] save user data in the database.
- [x] make `/find` page only accessible for authenticated users.
- [x] create login.
- [ ] add wishlist page.