Best settings for file management in PHP local development environment (wsl/docker)

藏色散人
Release: 2023-04-11 15:30:02
forward
1384 people have browsed it

This article brings you relevant knowledge about PHP. It mainly talks about the best settings for file management of PHP's local development environment under wsl or docker. Interested friends, let's take a look. ,I hope everyone has to help.

Best settings for file management in PHP local development environment (wsl/docker)

php The best settings for file management in the local development environment under wsl or docker

Requirements

This often happens when WSL or docker or a virtual machine is used. How to deploy files and how to develop and debug locally are common problems. This article assumes that the developer himself uses the windows operating system.

Solution

In this case, the best way is to create two sets of codes.
Note: No matter which solution, php, nginx, mysql and redis are placed in the container or wsl.

Discussion on a set of code solutions

(1) Putting the code on the host machine has the advantage that phpstorm can index quickly and query easily, but debugging is slow, execution is slow, or it may not be possible at all.
(2) The code is placed in a container or virtual machine, which is fast to debug and execute, but full-text search on the machine is very slow and not friendly to editors.
So, a set of codes cannot meet the needs.

Discussion on two sets of codes

The host puts one set of codes, and then every time it is modified, the code in the container should be modified automatically or manually. In this way, compatibility is achieved and local development is fast. Debugging is also fast, and execution is also fast.

Specific implementation of automation

Use the function of phpstorm to modify the original process of automatic file upload.
It is required that in the local development environment, the files of the container/virtual machine/docker/wsl can be accessed, the folder mapping (or drive mapping) can be created, the mount method can be sftp, and the docker data volume can be used.
(1) Search for "Deployment" in the phpstrom settings, select the number, and then select SFTP or local:
(2) Fill in the information of the remote host

Best settings for file management in PHP local development environment (wsl/docker)

The picture is sftp
Best settings for file management in PHP local development environment (wsl/docker)

#The picture above is the drive mapping.

(3) Then select Mappings and fill in the local code path and remote host code path. Note: The remote path is relative to the previously set Root Path.
Best settings for file management in PHP local development environment (wsl/docker)

(4) Then select Tools->Deployment in the menu bar and check Automatic Upload, which means that as long as the local code is modified and saved, it will be automatically uploaded to the remote server. .
(5) At this time, go to the corresponding directory on the server to view the file. It has been modified. Of course, you can ignore this step if you know it.
Best settings for file management in PHP local development environment (wsl/docker)

The picture above is the automatic upload prompt.

Summary

What this article describes is a local development environment. If there is a remote test server or remote official server, it should be done according to the deployment requirements instead of the solution in this article. .

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of Best settings for file management in PHP local development environment (wsl/docker). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:learnku.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!