An Angular playground for exploring different Angular ideas.
Built using the free Pokemon API, it is continuosly deployed here to Netlify where you can try it out.
Run npm install
.
Run npm run start
for a dev server. Navigate to http://localhost:4200/
. The
app will automatically reload if you change any of the source files.
Run npm run build
to build the project. The build artifacts will be stored in
the dist/
directory. Use the npm run build:prod
script for a production
build.
A set of scripts will run before each commit. You can test those hooks by
running npm run pre-commit
.
To run the production build of the application via Docker (available at
http://localhost:8080/
), do the following:
Build the image: docker build -t bojzi/angular-sandbox .
Spin up a container with the image:
docker run -p 8080:80 bojzi/angular-sandbox