Skip to content

Instantly share code, notes, and snippets.

View vorant94's full-sized avatar
πŸ§‘β€πŸ’»
Looking for an inspiration

Mordechai Dror vorant94

πŸ§‘β€πŸ’»
Looking for an inspiration
View GitHub Profile
@vorant94
vorant94 / app.component.ts
Created September 12, 2023 07:18
an example of how to load scripts in angular without polluting index.html
...
@Component({
...
})
export class AppComponent implements OnInit{
constructor(private readonly http: HttpClient) {
}
ngOnInit() {
@vorant94
vorant94 / Dockerfile
Last active September 7, 2023 11:11
passing secrets from gh action to docker builder
...
COPY package*.json ./
RUN --mount=type=secret,id=npmrc,target=/usr/local/app/.npmrc \
npm ci
...