This is a front-end web for MoviePilot, developed using Next.js and Flowbite React.
# docker-compose:
docker-compose -f docker-compose.local.yml up -d --build
# or docker:
docker build -t movie-pilot-control:local . &&
docker run -d --name movie-pilot-control-local \
-p 3002:3002 \
-e NEXT_PUBLIC_BACKEND_URL=http://localhost:3001 \
movie-pilot-control:local
1 Use Corepack to install pnpm. For more methods, please refer to pnpm
corepack enable
corepack prepare pnpm@latest --activate
2 Initialize the dependencies
pnpm run ci
3 To run in development mode
pnpm run dev
4 To open your project in a browser for viewing:http://localhost:3002
Take a look at the following resources:
- MoviePilot - To view the backend project and its APIs
- Learn Next.js - An interactive Next.js tutorial.
- Next.js Documentation
- Next.js GitHub repository
- Flowbite React Documentation
- Flowbite React GitHub repository