---
# System prepended metadata

title: How to configure CircleCI Auto Deploy
tags: [how-to]

---

---
title: How to configure CircleCI Auto Deploy
tags: how-to
---
# How to configure CircleCI Auto Deploy




Sample Deploy Process
```
    php artisan config:cache
    php artisan cache:clear
    php artisan event:cache
    php artisan route:cache
    php artisan view:cache

    git pull --ff-only
    git remote prune origin
    git pull --ff-only

    composer install --no-dev
    npm cache clear --force
    npm ci

    npm run prod
    php artisan config:cache
    php artisan cache:clear
    php artisan event:cache
    php artisan route:cache
    php artisan view:cache
    php artisan migrate --force
```