Skip to content

Instantly share code, notes, and snippets.

View emanuelsacoman's full-sized avatar
💻
Software Engineer | Specialization in Web Development

Emanuel Vinícius Sacoman emanuelsacoman

💻
Software Engineer | Specialization in Web Development
View GitHub Profile
@emanuelsacoman
emanuelsacoman / setup-structure.js
Created April 28, 2026 18:37
Um script que gera uma estrutura específica e automatizada para Angular 18.
import fs from 'fs';
import path from 'path';
import { execSync } from 'child_process';
const appDir = './src/app';
const srcDir = './src';
const envDir = './src/environments';
const angularJsonPath = './angular.json';
const firebaseJsonPath = './firebase.json';