Instructions Restaurant- App
  • Introduction to Restaurant App
  • Will need:
  • Necessary facilities
  • The React Native CLI
  • FIREBASE PROJECT
  • Web Application
    • Web Application Settings
  • MOBILE APPLICACTION
    • Mobile App
      • Login
      • iOS Firebase
      • Firebase - Android
  • Running the Application
    • iOS
    • Android
  • Change the app icon
  • Change the name of the app
  • Building a splash screen in React Native
    • iOS
    • Android
  • Possible React Native Errors While Running
  • FAQs
Powered by GitBook
On this page

Was this helpful?

  1. Web Application

Web Application Settings

Web Application Settings

PreviousFIREBASE PROJECTNextMobile App

Last updated 3 years ago

Was this helpful?

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

image-5
image- 6