Skip to content
Snippets Groups Projects
.gitignore 503 B
Newer Older
  • Learn to ignore specific revisions
  • Gwangbin's avatar
    Gwangbin committed
    # compiled output
    /dist
    
    Gwangbin's avatar
    Gwangbin committed
    frontend/node_modules
    backend/node_modules
    
    Gwangbin's avatar
    Gwangbin committed
    
    # Logs
    logs
    *.log
    npm-debug.log*
    pnpm-debug.log*
    yarn-debug.log*
    yarn-error.log*
    lerna-debug.log*
    
    # OS
    .DS_Store
    
    # Tests
    /coverage
    /.nyc_output
    
    
    Gwangbin's avatar
    Gwangbin committed
    # production
    
    Gwangbin's avatar
    Gwangbin committed
    frontend/build
    
    Gwangbin's avatar
    Gwangbin committed
    
    
    Gwangbin's avatar
    Gwangbin committed
    # IDEs and editors
    /.idea
    .project
    .classpath
    .c9/
    *.launch
    .settings/
    *.sublime-workspace
    
    # IDE - VSCode
    .vscode/*
    !.vscode/settings.json
    !.vscode/tasks.json
    !.vscode/launch.json
    !.vscode/extensions.json
    
    *.env
    
    Gwangbin's avatar
    Gwangbin committed
    *.local.env
    *.env.development
    *.env.production