This repository contains the source code for jerrypop.com. This project was bootstrapped with Create React App.
In the project directory, you can run each of the following commands:
Runs the application in the development mode. Open http://localhost:3000 to view it in the browser. The page will automatically reload if you make edits.
Launches the test runner in the interactive watch mode.
Builds the application 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.
Execute static analysis for the application source code, displaying any issues in the terminal.
Execute all end-to-end tests against the application being served locally via yarn start
. Options can be specified via command line arguments, like so:
# Execute the tests specified in `cypress/e2e/application.cy.js`
yarn e2e --spec "cypress/e2e/application.cy.js"
Open the end-to-end testing application, allowing selective execution of specific tests and modules against the application being served locally via yarn start
. This technique exposes more information that can be useful for debugging.
- Switch to main convergence branch via
git checkout main
- Delete stale remote branches via
git fetch && git remote prune origin
- Delete stale local branches via
git branch --merged | egrep -v main | xargs git branch -d