# select a repo from github or gitlab
# download the example or clone the repo from github
git clone https://github.com/ganatan/angular-app.git
# download the example or clone the repo from gitlab
git clone https://gitlab.com/ganatan/angular-app.git
# change directory
cd angular-app
cd backend-node-javascript
# install the repo with npm
npm install
# start the server
npm start
in your browser go to http://localhost:9000
npm install
(installing dependencies)npm outdated
(verifying dependencies)
npm run start
- in your browser http://localhost:9000
npm run lint
npm run test
npm run coverage
npm run build
npm run serve
- in your browser http://localhost:3000
DB_CLIENT=mock DB_USER=mock_user DB_PASSWORD=mock_password JWT_SECRET=mulder JWT_EXPIRATION=1h
DB_CLIENT=mongodb DB_USER=mongodb_user DB_PASSWORD=mongodb_password MONGO_URL=mongodb://localhost:27017/backend_angular JWT_SECRET=mulder JWT_EXPIRATION=1h
DB_CLIENT=mysql DB_USER=root DB_PASSWORD=Trustno1 JWT_SECRET=mulder JWT_EXPIRATION=1h
DB_CLIENT=pg DB_USER=postgres DB_PASSWORD=Trustno1 JWT_SECRET=mulder JWT_EXPIRATION=1h