webdev serve --release --output web:../api/ng web:9669aqueduct db generate
aqueduct db upgrade --connect postgres://dart:dart@localhost:5432/scaffoldinggit update-index --assume-unchanged api/config.yaml
git update-index --assume-unchanged api/config.src.yamlThe above command always considers that these yaml files are never getting updated. This is similar to ignore-on-commit feature of SVN.
To revert back to tracking the files uses the below commands.
git update-index --no-assume-unchanged api/config.yaml
git update-index --no-assume-unchanged api/config.src.yamlIf struck with SASS Issue with the Stagehand generated Code. add below code to your build.yaml file
targets:
$default:
builders:
sass_builder:
options:
outputStyle: compressed
angular_components|scss_builder:
enabled: true