rabithua@yuchangyedeMacBook-Air app % node -v
v18.16.1
rabithua@yuchangyedeMacBook-Air app % npm -v
9.5.1
npm i
npm start
Because the database connection needs to be kept confidential😎, you are unable to fully run the backend of this project locally. You can try modifying src/env.js
and change all the apiUrl
to https://api.givemeamovie.cn
before attempting the steps again.
.
├── README.md
├── backend
│ ├── CMD
│ ├── logo.svg
│ ├── model
│ │ └── movie.js
│ ├── package.json
│ └── server.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
├── src
│ ├── api
│ │ └── main.ts
│ ├── env.js
│ ├── index.css
│ ├── index.tsx
│ ├── pages
│ │ ├── 404
│ │ │ └── index.tsx
│ │ └── home
│ │ └── index.tsx
│ ├── react-app-env.d.ts
│ └── reportWebVitals.ts
├── tailwind.config.js
└── tsconfig.json