Skip to content

appjusto/admin

Repository files navigation

Setup

1. Install system dependencies

npm install --global yarn

2. Clone repo and install dependecies

git clone git@github.com:appjusto/admin.git
cd admin && yarn install

3. Configure enviroment variables

Create a file named .env.development.local filling up these variables:

echo "REACT_APP_PUBLIC_URL=
REACT_APP_FIREBASE_API_KEY=
REACT_APP_GOOGLE_MAPS_API_KEY=
REACT_APP_FIREBASE_REGION=
REACT_APP_FIREBASE_PROJECT_ID=
REACT_APP_FIREBASE_MESSAGING_SENDER_ID=
REACT_APP_FIREBASE_APP_ID=
REACT_APP_FIREBASE_MEASUREMENT_ID=
REACT_APP_FIREBASE_EMULATOR=
REACT_APP_FIREBASE_EMULATOR_HOST=
REACT_APP_FIREBASE_EMULATOR_PORT=
" > .env.development.local

Available Scripts

In the project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

yarn deploy

Deploy on firebase.

Cypress setup

In project root directory create cypress.env.json with:

{
 "firebase": {
  "apiKey": "",
  "region": "",
  "authDomain": "",
  "projectId": "",
  "storageBucket": "",
  "messagingSenderId": "",
  "appId": ""
 },
"emulator": true,
"approved": true
}

And get and paste the project's serviceAccount.json file.

Run yarn cypress:e:open and in cypress window run login_spec.js to create test users.

Login and complete main user onboarding, then submit and approve his business.

Write tests in cypress/integrations/ with testName_spec.js file format.

To run tests with firebase emulators, run yarn cypress:e:open or yarn cypress:e:run.

Without firebase emulators, change cypress.env.json "emulator" variable to false and run yarn cypress:open or yarn cypress:run.

Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages