Skip to content

Saba-Var/Movie-Quotes-front

Repository files navigation

Movie Quotes

Movie Quotes is a social network where you can find any quote in millions of movie lines.

Table of Contents

Prerequisites

  • Node JS @12.X and up

  • npm @6 and up

Tech Stack

Getting Started

1. First of all you need to clone repository from github:

git clone https://github.com/Saba-Var/Movie-Quotes-front.git

2. Navigate to the repository

cd movie-quotes-front-Var-saba/

3. Next step requires install all the dependencies

npm install

or

yarn install

4. copy .env

cp .env.example .env

5. after that you can run application from terminal:

npm run dev

Runs the app in the development mode. Open http:https://localhost:3000 to view it in your browser.

Project Structure

├─── .github
│     └── workflows
├─── readme
├─── components
│     ├── component-group-folder
│     │    ├── individual-component-folder
│     │    │    ├── component-file.tsx
│     │    │    ├── index.ts
│     │    │    ├── types.d.ts [#OPTIONAL]
│     │    │    └── costum-hook.tsx [#OPTIONAL]
│     │    └── index.ts
│     └── index.ts
├─── context 
│     ├── socket.context.tsx
│     ├── types.d.ts
│     └── index.ts
├─── helpers 
│     ├── helper-file.ts
│     ├── types.d.ts
│     └── index.ts
├─── hooks
│     ├── hook-file.ts
│     └── index.ts
├─── pages
│     ├── api
│     ├── page-folder
│     │    ├── index.tsx
│     │    └── [id].tsx [#OPTIONAL]
│     ├── _app.tsx
│     ├── 404.tsx
│     ├── index.tsx
│     └── index.unauthorized.tsx
├─── public 
│     ├── assets
│     │    ├── fonts
│     │    └── images
│     ├── locales
│     │    ├── en
│     │    └── ge
│     ├── favicon.ico
│     └── index.tsx
├─── readme 
│     └── assets
├─── schemas 
│     ├── form.ts
│     └── index.ts
├─── services 
│     ├── service-file.ts
│     ├── axios.ts
│     ├── types.d.ts
│     └── index.ts
├─── styles 
│     └── global.css
├─── types 
│     ├── global.d.ts
│     └── index.ts
│- .env
│- .env.example
│- .eslintrc.json
│- .gitignore
│- .prettierrc.json
│- next-env.d.ts
│- next-i18next.config.js
│- next.config.js
│- package.json
│- postcss.config.js
│- README.md
│- tailwind.config.js
│- tsconfig.json

Resources