webdev serve --release --output web:../api/ng web:9669
aqueduct db generate
aqueduct db upgrade --connect postgres://dart:dart@localhost:5432/scaffolding
git update-index --assume-unchanged api/config.yaml
git update-index --assume-unchanged api/config.src.yaml
The 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.yaml
If 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