Skip to content

birazstha/rajphoto2.0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup Guide :

- Clone the project from the repository.

- Install the composer in the project directory. (composer install)

- Make the .env file by copying the .env.example file.

- Generate the unique application key in .env. (php artisan key:generate)

- Migrate the tables. (php artisan migrate)

- Seed the tables. (php artisan db:seed)

- Install npm or yarn dependency manager. (npm install OR yarn install) note: yarn prefered

- To compile all the CSS and JS file execute the command. (npm run dev OR yarn run dev)

```

Place the hooks folder content inside folder .git/hooks (unix platform commands is given below)

``` cp ./hooks/* ./.git/hooks // Making sure the file is executable sudo chmod +x ./.git/hooks/pre-commit ```

Use bellow command to check if any minor fixes need to be done

``` composer sniff ```

Use bellow command to fix the problems

``` composer lint ```