Skip to content

7rin0/web-atom-ide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Atom Web/Apps IDE

Include main dependencies, configurations, linters, languages, autocompletes, etc. An Atom oriented for Web Development.

Screenshot

Atom IDE

Requirements

  • git
  • composer
  • sass (only for sass development)
  • phpcs / phpmd (only for php development)

Get dependencies

You can get the main required dependencies by executing the following command:

  • wget -qO- https://raw.githubusercontent.com/7rin0/web-atom-ide/master/bin/dependencies.sh | bash

Installation

Install on Centos

  • wget -qO- https://raw.githubusercontent.com/7rin0/web-atom-ide/master/bin/distros/centos/atom_centos_install.sh | bash

Install on Fedora

  • wget -qO- https://raw.githubusercontent.com/7rin0/web-atom-ide/master/bin/distros/fedora/atom_fedora_install.sh | bash

Install on Ubuntu/Debian

  • wget -qO- https://raw.githubusercontent.com/7rin0/web-atom-ide/master/bin/distros/ubuntu-debian/atom_ubuntu-debian_install.sh | bash

Update Atom

Update config (attention, your config will be replaced).

  • wget -qO- https://raw.githubusercontent.com/7rin0/web-atom-ide/master/bin/update_atom_config.sh | bash

Update Atom packages

  • apm upgrade

APM: Operations/Actions

Import Atom's dependencies from file

  • apm install --packages-file packages.list

Export Atom's dependencies to file

  • apm list --installed --bare > packages.list

Remove ALL packages

  • apm remove $(apm list --installed --bare | cut -d'@' -f1)