Coronavirus (COVID-19) cases in Germany, Saxony and Leipzig.
This app is online under covid-19.inpercima.net.
This project was generated with swaaplate version 2.5.3.
@angular/cli 16.2.0or higher
node 18.16.0or higher in combination withnpm 9.5.1or higher oryarn 1.22.19or higher, used in this repository
# clone project
git clone https://github.com/inpercima/covid-19/
cd covid-19
# install tools and frontend dependencies
yarnCreate environment files for development mode and production mode.
cp src/environments/environment.ts src/environments/environment.dev.ts
cp src/environments/environment.ts src/environments/environment.prod.tsNote: These files will not be under version control but listed in .gitignore.
It is recommanded to use a server to get full access of all angular. For the other options your app should run on a server which you like.
# build, reachable on http://localhost/app/path/to/dist/
yarn build:dev
# build and starts a server, rebuild after changes, reachable on http://localhost:4200/
yarn serve:dev
# build, rebuild after changes, reachable on http://localhost/app/path/to/dist/
yarn watch:dev# build in production mode, compressed
yarn build:prod# test
ng test
# e2e
ng e2eAll options have to been set in the environment files but some of them do not need to be changed.
All defaults refer to the environment file (environment.ts), they are prepared in development mode (environment.dev.ts).
Change for production mode the option production to true.
Defines the URL to the backend.
- default:
./ - type:
string
Applicationwide title of the app, displayed in title and toolbar.
- default:
COVID-19 - type:
string
The default route and the route to be redirected after a login if no route is stored or if a route does not exist.
- default:
dashboard - type:
string
Defines whether the app is in production or not.
- default:
false - type:
boolean - values:
true/false
Name of a build-in theme from angular-material or a custom light or dark theme.
- default:
indigo-pink - type:
string - values:
deeppurple-amber/indigo-pink/pink-bluegrey/purple-green/custom-light/custom-dark
To create a custom light or dark theme just edit the colors and themes in themes.scss.