TurboPixel Angular PWA Application
TurboPixel is PWA Application for creating amazing PixelArt-like photos.
Over 30 effects, advanced settings and export formats.
Enjoy!
GDD G-Code Driven Development
Check this: https://turborium.github.io/turbopixel/
TurboPixel licensed under Apache 2.0 license, see LICENSE.
Part of files licensed under MPL1.1, see license notice in each of file.
If the "source" file does not have a license notice, Apache 2.0 is used by default.
This project was generated with Angular CLI version 15.2.5.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The application will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.
https://angular.io/guide/setup-local
npm install -g @angular/cli
ng new <name>
cd <name>
ng serve --open
https://material.angular.io/guide/getting-started
ng add @angular/material
open index.html
change <body class="mat-typography">
to <body class="mat-typography mat-app-background">
ngrok http 4200 --host-header="localhost:8080"
npm install
https://web.dev/creating-pwa-with-angular-cli/
ng add @angular/pwa
cd dist/<projname>
npm i -g http-server
``
add this to "package.json":
ng build && http-server -p 8086 -c-1 dist/<projname>
use for running
`npm run start-pwa`
`ngrok http 8086 --host-header="localhost:8080"`
ng add angular-cli-ghpages
ng deploy --base-href=https://turborium.github.io/turbopixel/
ng build --base-href https://turborium.github.io/turbopixel/
https://kuros.in/ci/cd/use-private-repo-to-publish-website-with-github-pages/