An easy starter project for a Rails 5 / Angular 2 build. This is the TypeScript version. There is also a JavaScript version. Features:
- webpack serves assets.
- TypeScript enables ES6/7 JavaScript language features and a robust typing system.
- Sass makes styling smart, and smart styling easy.
- Foreman runs webpack and Rails server concurrently with just one command.
- Heroku deployment is a cinch.
- Node.js and npm
- Ruby 2.3.3. Consider RVM, if not already installed.
- Rails 5
- Bundler
- (Optional) Heroku CLI
If you choose to clone, you can run this command to clone this repo into a new project folder (e.g. my-proj
):
git clone https://github.com/R-V-S/ngRails.git my-proj
cd my-proj
npm install
bundle
foreman start
Angular's files are contained in app/client
. No testing platform is installed. Consider Karma.
Templates and stylesheets should be required inline rather than using Angular's templateUrl
or styleUrls
.
Stylesheets for components must end in .component.css
or .component.scss
. This is because component stylesheets, which are included inline, must be run through Babel's raw loader.
Webpack's configuration is in config/webpack.config.js
Rails is installed without Sprockets (-S) and without Minitest (-T). Rspec is installed as a testing platform.
By default, sqlite3 is configured to run locally and postgresql is configured for production.
Deploying to Heroku is easy.
heroku create
heroku buildpacks:add --index 1 heroku/nodejs
heroku buildpacks:add --index 2 heroku/ruby
heroku buildpacks:add --index 3 https://github.com/febeling/webpack-rails-buildpack.git
git push heroku master
heroku open