gxthrj edited a comment on issue #715: URL: https://github.com/apache/apisix-dashboard/issues/715#issuecomment-723446494
I recommend turning the project into a directory structure like this ``` apisix-dashboard ├── .action ├── .github ├── README.md ├── api │ └── makefile ├── dashboard │ └── makefile ├── docs └── makefile ``` 1. The root directory only contains: | file | type | desc | |-----------| -----------| -----------| |README.md | file | Project Introduction| |makefile | file | The makefile in the root directory standardizes the overall packaging process, and the makefile in the subproject is called | | api | dir | the logic of manager-api| |dashboard | dir | the logic of dashboard UI | | build | dir | Compilation results, such as a tar package that can be decompressed and run| 2. There are respective makefiles in the api and dashboard, which are responsible for their respective construction work. what do you think ? @juzhiyuan @justinmclean @membphis @moonming ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
