Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://turborium.github.io/turbopixel/
TurboPixel Angular PWA Application
https://turborium.github.io/turbopixel/
angular angular-material app architecture best-architecture best-practice camera clean-architecture clean-code ddd-architecture gdd material-design material-ui pixelart pwa pwa-app solid turbocode typescript uml
Last synced: 3 months ago
JSON representation
TurboPixel Angular PWA Application
- Host: GitHub
- URL: https://turborium.github.io/turbopixel/
- Owner: turborium
- License: apache-2.0
- Created: 2023-04-22T15:20:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-15T07:56:09.000Z (over 1 year ago)
- Last Synced: 2024-07-22T05:36:13.731Z (4 months ago)
- Topics: angular, angular-material, app, architecture, best-architecture, best-practice, camera, clean-architecture, clean-code, ddd-architecture, gdd, material-design, material-ui, pixelart, pwa, pwa-app, solid, turbocode, typescript, uml
- Language: TypeScript
- Homepage: https://turborium.github.io/turbopixel/
- Size: 3.39 MB
- Stars: 25
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pwa - TurboPixel
README
# TurboPixel
TurboPixel Angular PWA ApplicationTurboPixel is PWA Application for creating amazing PixelArt-like photos.
Over 30 effects, advanced settings and export formats.
Enjoy!# [GDD](https://github.com/turborium/GDD) G-Code Driven Development
![1](doc/1.PNG)
![2](doc/2.PNG)
![3](doc/3.PNG)### Check this: https://turborium.github.io/turbopixel/
# License
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.# Project
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.2.5.## Development server
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.## Code scaffolding
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`.## Build
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.## Running unit tests
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).## Running end-to-end tests
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.## Further help
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.# SETUP
### set up Angular
https://angular.io/guide/setup-local
`npm install -g @angular/cli`### new project
`ng new `
`cd `### run
`ng serve --open`### install Material Design
https://material.angular.io/guide/getting-started
`ng add @angular/material`
open index.html
change `` to ``## ngrok
ngrok http 4200 --host-header="localhost:8080"## After clear
`npm install`## PWA
https://web.dev/creating-pwa-with-angular-cli/
`ng add @angular/pwa`
`cd dist/`
`npm i -g http-server`
``
add this to "package.json":
`ng build && http-server -p 8086 -c-1 dist/`
use for running
`npm run start-pwa`
`ngrok http 8086 --host-header="localhost:8080"`## deploy
ng add angular-cli-ghpages
ng deploy --base-href=https://turborium.github.io/turbopixel/## manual
ng build --base-href https://turborium.github.io/turbopixel/##
https://kuros.in/ci/cd/use-private-repo-to-publish-website-with-github-pages/