Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.69 KB

README.md

File metadata and controls

45 lines (30 loc) · 1.69 KB

wedding-rsvp

A site for wedding guests to send RSVPs

Build status Code Climate Test Coverage

Developing and running the site

To start the site on localhost:3000, run $ rails server from the shell.

Alternatively, the project uses the Gulp system for asset management and browser sync.

Note: In order to run the gulp tasks, you must install gulp globally:

$ npm install -g gulp

The available tasks are:

  • $ gulp server Starts all watch tasks then does rails server
  • $ gulp sass Compiles sass files
  • $ gulp sass:watch Watches changes to sass files and recompiles
  • $ gulp bundle Watches for changes on JS assets and rebundles
  • $ gulp browser-sync Starts the Browser Sync proxy

After getting latest, run $ npm install to bring down any possible new node packages.

URLs

SMTP settings

STMP settings for the site can be specified for local environments by creating a file called .env in the root, and specifying the following keys:

SMTP_USERNAME=<your smtp username>
SMTP_PASSWORD=<your smtp password>

This file should not be committed to the repository.