You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please use Postgres SQL as the database when it prompt.
# Please enter the name of the backstage applcation cd<Backstage_Applcation_name># 55backstage-app can # This will create a docker compose file.
cat <<EOF >$(pwd)/docker-compose.yamlversion: '3'services: db: image: postgres restart: always environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: password@123 ports: - 5430:5432EOF# Now we have to make our database up and running
docker-compose up
# It will replace all the variables in the app config file
sed -i 's/${POSTGRES_HOST}/localhost/g' app-config.yaml ; sed -i 's/${POSTGRES_PORT}/5430/g' app-config.yaml ; sed -i 's/${POSTGRES_USER}/postgres/g' app-config.yaml ; sed -i 's/${POSTGRES_PASSWORD}/password@123/g' app-config.yaml
# To clean the pre-existing components from the backstage # To start the backend application
yarn start-backend
# To start the frontend application
yarn start
A short summary of how we setup the backstage application