Web Application Settings

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

- In the root of the project we run: npm install - 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 /"

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

Last updated