# Web Application Settings

To customize the web application, or what is the administrator panel, we must modify the file **`src/firebase/config.js`** in which we add the configuration that shows us the Web Application created in our Firebase project, Remember **image-5**

![ image-5](https://2729766939-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MlG5nIwcyCY9J1rAO9u%2F-MlGCs-u8VMg7eX45G7A%2F-MlGCwAcQNupSm5rOH00%2Fimage5.png?alt=media\&token=19dd588a-5984-4344-907b-1944716d92e0)

\- In the root of the project we run: `npm install`\
&#x20;\- Once the dependencies are installed, we `run: npm start`

To upload the application to a server, it is necessary to modify the package.json file by adding the following before the dependencies and under “private” true:

`"Homepage": "/build",`

And under the "dependencies" we will add the name of the Hosting to which we have to upload the application. Shown in image-6

`"Homepage": "https // Your Domain Name /"`

![ image- 6](https://2729766939-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MlG5nIwcyCY9J1rAO9u%2F-MlGD34ATuhxcHNpdvYa%2F-MlGG9_UXKwieNXfZSwg%2Fimage6.png?alt=media\&token=1dca99d7-935c-4cab-9153-aa81312a33f2)

To customize the text, you just have to modify the following files, which will only take a few minutes, since the application text is very short:

```
 src/components/paginas/Menu.js
 src/components/paginas/NuevoPlato.js 
 src/components/paginas/Ordenes.js
 src/components/ui/Orden.js
 src/components/ui/Plato.js
 src/components/ui/Sidebar.js
```
