Skip to content

Latest commit

 

History

History
97 lines (80 loc) · 4.52 KB

File metadata and controls

97 lines (80 loc) · 4.52 KB

Getting started with moFed:

Create a project folder in your home directory (mine is called proj)

This is to put all your projects in. It may be advantageous to also create a component folder for component development work.

xCode:

Install using NVM (preferred):

Install Node using node download (if not using NVM):

Install Git:

Git client:

Atom:

  • https://atom.io
  • Don't forget to hit the install shell commands in the 'Atom' menu after it has started. This allows you to type atom, atom ., atom someFile.js and open then in atom from the terminal.

plugins for atom:

Slack:

Misc apps:

Install LDSJS

The ldsjs library allows you to install starter kits for Javascript-based projects, like React.js or Angular.js. It also makes it simple to create new components within those projects. Ldsjs is maintained by the front-end stack team.

  1. Make sure you set NPM to use our local NPM repo first: npm config set registry https://registry.npmjs.org/
  2. Install ldsjs globally: npm install --registry="http://icsnpm.ldschurch.org" -g ldsjs

Get added to the moFed groups:

VPN info

Misc Stuff:

Set screenshot folder

  • Create folder on the desktop called screenshots.
  • Terminal command: defaults write com.apple.screencapture location ~/Desktop/screenshots.
  • Terminal command: killall SystemUIServer.
  • Take a screenshot to test: command + shift + 4 (+ space will take a screen shot of a selected app).

Quick commands for showing and hiding files in finder

  • Open terminal
  • sudo atom ~/.bash_profile or if you don't have atom you can use nano or vim.
  • paste the following and save:
    • alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
    • alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'
  • now you can type showFiles and hideFiles in the terminal to show and hide hidden files.