Environment variables
- Navigate to
server/
folder - Create a copy of
.env.example
- Rename it to
.env
- Replace values with yours
Install dependencies
npm i
To start serving on https://localhost:4200 run:
npm run serve
Run tests
npm test
run with watcher
npm run tdd
-
Build pipeline:
- use custom dockerimage:
node:10
- with script:
npm install
- use custom dockerimage:
-
Test pipeline:
- use custom dockerimage:
node:10
- with script:
apt-get update apt-get install -y gconf-service libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxss1 libxtst6 libappindicator1 libnss3 libasound2 libatk1.0-0 libc6 ca-certificates fonts-liberation lsb-release xdg-utils wget npm test
- use custom dockerimage:
-
Deploy pipeline:
-
as first job - add "Build" job
- use custom dockerimage:
node:10
- with script:
nom run build
- Set env varibale
NG_ENV
to beproduction
- use custom dockerimage:
-
as second job - use "Rolling Deploy"
- with script:
cf push $CF_APP export CF_APP_NAME="$CF_APP" export APP_URL=http://$(cf app $CF_APP_NAME | grep -e urls: -e routes: | awk '{print $2}')
-
-
Don't forget to add runtime environment variables afterwards to the cloud foundry app
Make sure .env is created
Before running in production you'll have to build the app by running
npm run build
and then run the app:
npm start
To build image run:
bash build.sh
To run image:
bash run.sh
Run:
ibmcloud ks cluster-config <cluster name>
Copy result, paste and hit enter
Build:
// docker build --tag registry.<region>.bluemix.net/<my_namespace>/<repo_name>:<tag> .
docker build --tag registry.eu-de.bluemix.net/<my_namespace>/frontend-starter:1 .
Verify image is built:
docker images
Ensure you're logged in before pushing
ibmcloud cr login
Push to the registry:
docker push registry.eu-de.bluemix.net/<namespace>/frontend-starter:1
Verify that the image was pushed successfully by running the following command.
ibmcloud cr image-list
Start by running your image as a deployment
kubectl run frontend-deployment --image=registry.eu-de.bluemix.net/<namespace>/frontend-starter:1
Expose
kubectl expose deployment/frontend-deployment --type=NodePort --port=3000 --name=frontend-service --target-port=3000
To find the port used on that worker node, examine your new service:
kubectl describe service frontend-service
Take note of the "NodePort:" line as
Run ibmcloud cs workers <name-of-cluster>
, and note the public IP as .
ng-bootstrap
is being used for the styling framework. Documentation
If you want to remove it (and use another styling framework),
- Remove the
bootstrap
and@ng-bootstrap/ng-bootstrap
dependencies inpackage.json
- Remove the line
node_modules/bootstrap/dist/css/bootstrap.min.css
from the styles configuration inangular.json
- Remove the components under
src/app/components
and the references inapp.component.html