React SPA (Single Page Application)
This codebase is a React SPA boilerplate. It is intended to be used as a
Booster for my Launchpad.
However, that being said, it can still be used completely on its own.
Starting the fully-fledged frontend is as simple as running the commands below.
sh setup.sh
make client
Command | Description |
---|---|
make client |
Launches the client container |
make down |
Removes the client containers |
make nuke |
Purges all client containers, images, networks, volumes |
make bash |
Shells into the client to run one-off commands. e.g. npm run test |
Command | Description | ||
---|---|---|---|
npm run build |
Bundles the app into a single build folder |
||
npm run prod |
Runs the client on $PORT | 4002 (must run npm run build first) |
|
npm run dev |
Runs the client with hot reloading on $PORT | 4000 | |
npm run test |
Runs the suite of unit and e2e tests | ||
npm run test:unit |
Runs the suite of unit tests | ||
npm run test:e2e |
Runs the suite of end-to-end tests with real browser interactivity | ||
npm run test |
Runs the suite of end-to-end tests in headless mode |
Environment variables are injected into the app at runtime. To add a new environment variable, you will need to update
the following files:
Please note the environment variables in each of these places are only used when running the app locally. If you are
deploying this app, it is expected you specify env vars on the hosted server and reference them in
google-cloud-build/build.yaml and
google-cloud-build/promote.yaml. See deployment.
Code released under the MIT License