forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #! /usr/bin/env bash
 | |
| 
 | |
| echo "Starting prepare-build"
 | |
| nvm use
 | |
| # The build script; we build the application step by step as building everything at once takes too much RAM
 | |
| # Should be run from the repository root
 | |
| # This is the main deployment script
 | |
| rm -rf dist/*
 | |
| rm -rf .cache
 | |
| mkdir dist 2> /dev/null
 | |
| mkdir dist/assets 2> /dev/null
 | |
| 
 | |
| 
 | |
| export NODE_OPTIONS="--max-old-space-size=16384"
 | |
| VERSION=$(cat package.json | grep '"version": ' | sed "s/^.*://" | tr -d " \",")
 | |
| sed "s/= \"0.0.0\"/= \"$VERSION\"/" -i public/service-worker.js
 | |
| 
 | |
| # This script ends every line with '&&' to chain everything. A failure will thus stop the build
 | |
| npm run download:editor-layer-index &&
 | |
| npm run prep:layeroverview &&
 | |
| # Done by 'deploy_hosted':
 | |
| # npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
 | |
| # npm run generate:translations
 | |
| npm run reset:layeroverview &&
 | |
| npm run generate:mapcomplete-changes-theme  &&
 | |
| npm run generate:layouts
 | |
| 
 | |
| if [ $? -ne 0 ]; then
 | |
|     echo "ERROR - stopping the build"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| 
 | |
| 
 | |
| BRANCH=`git rev-parse --abbrev-ref HEAD`
 | |
| echo "The branch name is $BRANCH"
 | |
| 
 | |
| 
 | |
| if [ $BRANCH = "master" ] || [ $BRANCH = "develop" ]
 | |
| then
 | |
|     ASSET_URL="./"
 | |
|     export ASSET_URL
 | |
|     echo "$ASSET_URL"
 | |
| else
 | |
|   # ASSET_URL="$BRANCH"
 | |
|   ASSET_URL="./"
 | |
|   export ASSET_URL
 | |
|   echo "$ASSET_URL"
 | |
| fi
 | |
| 
 | |
| # sanity check
 | |
| if [[ -f "bookcases.html" ]]
 | |
| then
 | |
|   echo "Bookcases exists"
 | |
| else
 | |
|   echo "Bookcases.html does not exist - aborting"
 | |
|   exit 1
 | |
| fi
 |