English | 中文文档
QQ Group
Group No.: 546574618
Docker v20.10+
&Docker Compose v2.0+
must be installed- System:
Centos/Debian/Ubuntu/macOS/Windows
- Hardware suggestion: 2 cores and above 4G memory
- Special note: Windows users please use
git bash
orcmder
to run the command
# 1、Clone the repository
# Clone projects on github
git clone -b pro --depth=1 https://github.com/kuaifan/dootask.git
# Or you can use gitee
git clone -b pro --depth=1 https://gitee.com/aipaw/dootask.git
# 2、Enter directory
cd dootask
# 3、Installation(Custom port installation, as: ./cmd install --port 80)
./cmd install
# Reset default account password
./cmd repassword
# This method only replaces the HTTP port. To replace the HTTPS port, please read the SSL configuration below
./cmd port 80
# This URL only affects the email reply.
./cmd url {Your domain url}
# example:
./cmd url https://domain.com
./cmd stop
# P.S: Once application is set up, whenever you want to start the server (if it is stopped) run below command
./cmd start
NodeJs 20+
must be installed
# Development
./cmd dev
# Production (This is web client. For App/PC/Mac clients, Please read README-CLIENT.md)
./cmd prod
# You can do this using the following command
./cmd artisan "your command" # To run a artisan command
./cmd php "your command" # To run a php command
./cmd nginx "your command" # To run a nginx command
./cmd redis "your command" # To run a redis command
./cmd composer "your command" # To run a composer command
./cmd supervisorctl "your command" # To run a supervisorctl command
./cmd mysql "your command" # To run a mysql command (backup: Backup database, recovery: Restore database, open: Open database external port access, close: Close database external port access)
# Running commands in a project
./cmd https
# 1、Nginx config add
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# 2、Running commands in a project (If you unconfigure the NGINX agent, run: ./cmd https close)
./cmd https agent
Note: Please back up your data before upgrading!
# Method 1: Running commands in a project
./cmd update
# Or method 2: use this method if method 1 fails
git pull
./cmd mysql backup
./cmd uninstall
./cmd install
./cmd mysql recovery
- Please try again if the upgrade fails across a large version.
- If 502 after the upgrade please run
./cmd restart
restart the service.
Follow these steps to complete the project migration after the new project is installed:
- Backup original database
# Run command under old project
./cmd mysql backup
-
Copy
database backup file
andpublic/uploads
directory to the new project. -
Restore database to new project
# Run command under new project
./cmd mysql recovery
# Running commands in a project
./cmd uninstall