iflrandevu/docs/console.md

95 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

# Console
> This page contains information about the CLI support of Easy!Appointments.
### Introduction
Starting from v1.4.0 Easy!Appointments has introduced CLI support, providing a set of useful utilities to use with your installation.
The commands can be executed with PHP installed on your server and available from within the terminal. To ensure that you have PHP configured properly run the following command from within a terminal session.
```
php -v
```
It shall give you information about the currently installed PHP version.
The available commands are described below.
### Commands
The entry point for the CLI commands is the root `index.php` file which means that you will be calling this file with additional arguments, depending on which command you want to run.
##### Migrate
```
php index.php console migrate
```
This command will migrate the database to the latest state.
```
php index.php console migrate fresh
```
This command will reset any change made by the previous migrations and start from the beginning.
##### Seed
```
php index.php console seed
```
This command will add a test admin, provider, customer and service in the app, so that you can already run some tests.
##### Install
```
php index.php console install
```
This command will perform a CLI installation of Easy!Appointments.
You can run this after your are done configuring your app from the root `config.php` file.
##### Backup
```
php index.php console backup
```
This command will create a backup of the application data in the `storage/backups` directory.
```
php index.php console backup /path/to/backup/folter
```
You can also provide a custom directory for your backup files.
##### Sync
```
php index.php console sync
```
This command will trigger the calendar synchronization for all the system providers.
It is especially important, because it can be automatically executed on a regular base with a cron job.
This way the app provider schedules will always be updated.
##### Help
```
php index.php console help
```
This command will give more information about the console capabilities.
2022-02-24 17:44:30 +03:00
*This document applies to Easy!Appointments v1.4.3.*
[Back](readme.md)