A site for wedding guests to send RSVPs
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 proxyAfter getting latest, run $ npm install
to bring down any possible new node packages.
$ gulp server
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.