2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 10:05:39 +00:00

Remove --no-frontend option (#5568)

- Until the new frontend is fully ready to be shipped, adding this option only serves to confuse users (and break the install process potentially)
- Remove this option entirely from the invoke script
- Update documentation accordingly
This commit is contained in:
Oliver
2023-10-18 00:21:26 +11:00
committed by GitHub
parent 4bbf168393
commit 997b2ad569
3 changed files with 7 additions and 7 deletions

View File

@ -68,7 +68,7 @@ If desired, the user may edit the environment variables, located in the `.env` f
Perform the initial database setup by running the following command:
```bash
docker compose run inventree-dev-server invoke update --no-frontend
docker compose run inventree-dev-server invoke update
```
If this is the first time you are configuring the development server, this command will build a development version of the inventree docker image.
@ -229,7 +229,7 @@ Any updates which require a database schema change must be reflected in the data
To run database migrations inside the docker container, run the following command:
```
docker compose run inventree-dev-server invoke update --no-frontend
docker compose run inventree-dev-server invoke update
```
### Docker Image Updates

View File

@ -135,7 +135,7 @@ The first step is to edit the environment variables, located in the `.env` file.
Perform the initial database setup by running the following command:
```bash
docker compose run inventree-server invoke update --no-frontend
docker compose run inventree-server invoke update
```
This command performs the following steps:
@ -216,7 +216,7 @@ This ensures that the InvenTree containers will be running the latest version of
Run the following command to ensure that the InvenTree database is updated:
```
docker compose run inventree-server invoke update --no-frontend
docker compose run inventree-server invoke update
```
!!! info "Skip Backup"