mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2026-01-06 17:03:58 +00:00
10 lines
244 B
Bash
10 lines
244 B
Bash
#!/bin/bash
|
|
# To test production site locally requires a custom .env file with server environment variables
|
|
# to temporarily populate.
|
|
cp .env .env-default
|
|
cp ./.env-prod ./.env
|
|
npm run build
|
|
cp .env-default .env
|
|
rm .env-default
|
|
firebase serve
|