Skip to content

Latest commit

 

History

History
153 lines (110 loc) · 4.21 KB

README.md

File metadata and controls

153 lines (110 loc) · 4.21 KB
logo

FolkSoul is a music band platform where we can find out about the band and its members or just enjoy the visuals.

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/Folksoul-front.git

2. Next step requires install all the dependencies.

npm install

or

yarn install

3. copy .env

cp .env.example .env

4. after that you can run FolkSoul application from terminal:

npm start

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

Testing

1. copy cypress.config.ts

cp cypress.config.ts.example cypress.config.ts

2. Run application from the terminal

npm start

3. start cypress

npx cypress open

In order to see coverage of testing go to coverage/lcov-report and open index.html

Project Structure

├─── cypress
├─── readme
├─── src
│    ├── assets
│    │
│    ├── components
│    │   ├── component-file.tsx
│    │   ├── index.ts
│    │   ├── types.d.ts
│    │   └── svgs
│    │       ├── svg-file.tsx
│    │       ├── index.ts
│    │       └── types.d.ts
│    │
│    ├── helpers
│    │   ├── helper-file.ts
│    │   ├── index.ts
│    │   └── types.d.ts
│    │
│    └── pages
│        └── page-folder
│            ├── component-folder  [#OPTIONAL]
│            │   ├── component-file.tsx
│            │   ├── index.ts
│            │   └── types.d.ts    [#OPTIONAL]
│            ├── page-file.tsx
│            ├── index.ts
│            └── types.d.ts        [#OPTIONAL]
- .babelrc
- .env
- .eslintrc.json
- .gitignore
- .prettierrc.json
- cypress.config.ts
- package.json
- tailwind.config.js
- tsconfig.json

Resources