filmwise GitHub Details, Stars and Alternatives | OpenRepoFinder
raihan2bd / repository
filmwise
A full stack project build with Golang(Go), PostgreSQL, React, Redux, TypeScript, Html and CSS. Your Ultimate Movie Hub. Experience movies like never before, the web application that lets you dive into detailed movie information, share your thoughts through comments and reviews. Discover, discuss, and decide on your favorite films all in one place.
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10
Community adoption25% weight
14
Maintenance state20% weight
65
License clarity10% weight
100
Project information10% weight
75
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
FilmWise: Your Ultimate Movie Hub. Experience movies like never before with FilmWise, the web application that lets you dive into detailed movie information, share your thoughts through comments and reviews, and connect with fellow cinephiles. Discover, discuss, and decide on your favorite films all in one place. if you want to see the front-end part, you can click here
🛠 Built With
Tech Stack
🚀 Live Demo
Project ScreenShot
ALGORITHMICALLY RELATED
Similar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
Scaffold production-ready full-stack apps in TypeScript, Rust, Python, Go, and Java with a visual builder and CLI. Choose your frontend, backend, database, auth, AI, payments, and DevOps integrations, all wired together.
Discover detailed movie information, from plots to cast.
Engage in vibrant discussions by commenting on movies.
Add your personal reviews to contribute to the community.
💻 Getting Started
To get a local copy up and running, follow these steps.
Prerequisites
In order to run this project you need:
Then Make sure you have installed Go (golang) version 1.20.4 or the latest stable version.
Then make sure you have installed PostgreSQL on your local machine if you want to use this project locally.
Then Create a database called filmwise inside the database and create tables using this project>databaseschema SQL query.
First of all to see this project's graphical interface make sure you run the front-end part
Setup
Clone this repository to your desired folder:
cd your-folder
https://github.com/raihan2bd/filmwise.git
Before running the project please make sure you create a .env file to your project root directory and add DATABASE_URI, and JWT_SECRET_KEY environment variables to the file. For example:
DATABASE_URI="host=localhost port=5432 dbname=filmwise user=postgres password=your password sslmode=disable"
JWT_SECRET="your jwt secret key"
CLD_URI="Secreat Key of cloudinary"
CLOUD_NAME="Name of cloudinary account"
Getting JWT Secret Key
To obtain the JWT secret key, please click here.
An open Go terminal is required. In the terminal, please copy the following code and paste it into your .env file.
Like this
JWT_SECRET="*******"
package main
import (
"crypto/rand"
"encoding/base64"
"fmt"
)
func main() {
// Define the desired length of the secret key in bytes
keyLength := 64 // Adjust the length as needed
// Create a byte slice to hold the random bytes
key := make([]byte, keyLength)
// Generate random bytes using crypto/rand
_, err := rand.Read(key)
if err != nil {
fmt.Println("Error generating random bytes:", err)
return
}
// Encode the random bytes in base64 to create a string
secretKey := base64.StdEncoding.EncodeToString(key)
fmt.Println("Generated JWT secret key:", secretKey)
}
Getting Cloudinary Serect key and Name
Cloudinary is a cloud-based media management platform that helps businesses and developers efficiently store, manage, and deliver images and videos for websites and applications. It provides features like image and video uploading, storage, transformation, optimization, and content delivery via a content delivery network (CDN), making it easier to handle media assets in web and mobile applications. Cloudinary's services can enhance website performance, user experience, and streamline media asset workflows.
For using this you need to Create an account Or if you have an Account you need to Sign In
After that go into the Dashborad
Copy the Cloud Name and
API Environment variable
CLD_URI="cloudinary://******"
CLOUD_NAME="****"
Install
Install this project with:
Install the required gems with:
go mod tidy
Database
Create the databases properly, You need to open an SQL editor and run the /database/schema.sql file script. Make sure you run the script block by block.
Usage
To run the development server, execute the following command:
go run ./cmd/api/ .
Build
To build the project for production-ready run the following command:
go build -o main ./cmd/api/*.go
Deployment
To deploy your project online You can visit Render
LightningRAG is a full-stack Vue + Gin starter with a decoupled frontend and backend, plus built-in, extensible RAG (retrieval-augmented generation): knowledge bases, vector search, and integrations with many LLM and vector-store providers
Go/Echo+Templ+Htmx: Full stack application using Golang's Echo framework & Templ templating language with user session management + CRUD to a SQLite database (To Do List) and HTMX in the frontend
Ego is a full-stack web framework written in Go, lightweight and efficient front-end component solutions, based on gin. The front-end is compiled, does not affect the back-end.