Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.12 KB

File metadata and controls

26 lines (17 loc) · 1.12 KB

ReduxSimpleStarter (with Sass Support)

This project is heavily based on the ReduxSimpleStarter repo by the excellent Stephen Grider of Udemy fame.

###Getting Started###

Checkout this repo, install dependencies, then start the webpack process with the following:

	> git clone https://github.com/scottvrable/ReduxSimpleStarter
	> cd ReduxSimpleStarter
	> npm install
	> npm run dev

Unlike the original version of this project, this verison supports Sass (with source maps) through a overly opinioned set up. (I also did some obnoxious stuff like switching spaces to tabs and single-quotes to double-quotes.)

Each subdirectory in the src/styles folder (except for lib) contains a _main.scss partial. These _main.scss files should import the other partials in their respective directories. Then, style.scss imports all the _main.scss files. All of this is outputted to style.css in the root directory which is what will be read by the browser in a live app.

When Deploying to Heroku...

Run...

	> git push heroku master