Welcome to RealTone! This project is a full-stack movie review platform powered by a Next.js frontend and a Flask backend.
https://developer.themoviedb.org/reference/intro/getting-started
realtone/
├── client/ # Frontend - Next.js
└── server/ # Backend - Flask
git clone https://github.com/YOUR_USERNAME/realtone.git
cd realtonegit pull origin maingit add .
git commit -m "your message here"
git push origin main🔒 Make sure you're working on a branch or feature PR if you're collaborating in a team.
cd client
npm install
npm run devAccess your frontend at
http://localhost:3000
cd server
pip install -r requirements.txt
python app.py # or however you run your entry scriptBackend should run on
http://localhost:5000unless otherwise specified.
- Ensure Python 3.10+ and Node.js 18+ are installed.
- Use a virtual environment for Python dependencies (e.g.,
venv,conda). - Consider using
.envfiles for configuration in bothclient/andserver/.
- Open an issue or start a discussion in the GitHub repo!