which commands should l run to install freight management app that is under frappe market place apps , l have gone to github there are no instructions as well
This module allows you to manage all freight operations (Air, Ocean, and Land). For ocean it allows you to manage both FCL and LCL shipments and for land it allows you to manage both FTL and LTL, i...
The app can be installed like any other custom app, depending on the method of installation.
https://frappeframework.com/docs/v14/user/en/basics/apps#installing-an-app-into-a-site
If you’ve used Docker for setup, refer:
This is basic configuration for building images and testing custom apps that use Frappe.
You can see that there's four files in this folder:
- `backend.Dockerfile`,
- `frontend.Dockerfile`,
- `docker-bake.hcl`,
- `compose.override.yaml`.
Python code will be built in `backend.Dockerfile`. JS and CSS (and other fancy frontend stuff) files will be built in `frontend.Dockerfile`.
`docker-bake.hcl` is reference file for [Buildx Bake](https://github.com/docker/buildx/blob/master/docs/reference/buildx_bake.md). It helps to build images without having to remember all build arguments.
`compose.override.yaml` is [Compose](https://docs.docker.com/compose/compose-file/) override that replaces images from [main compose file](https://github.com/frappe/frappe_docker/blob/main/compose.yaml) so it would use your own images.
To get started, install Docker and [Buildx](https://github.com/docker/buildx#installing). Then copy all content of this folder (except this README) to your app's root directory. Also copy `compose.yaml` in the root of this repository.
Before the next step—to build images—replace "custom_app" with your app's name in `docker-bake.hcl`. After that, let's try to build:
```bash
This file has been truncated. show original
1 Like