ijlee2 / acm-octane-workshop

Ember Octane workshop for Austin Code Mentorship

Home Page:https://acm-octane.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interactive Workshop: Prototyping Apps with Ember Octane

The workshop was first presented at the Austin Code Mentorship on 2/1/2020.

The finished app shows a product listing

Description

When building your resume or competing in a hackathon, you need to be able to write a demo app in a short time. Unfortunately, you (and your team) may end up spending a lot of time on:

  • Defining a project structure
  • Finding a router and data store
  • Connecting the backend project with your frontend
  • Populating your app with data
  • Stopping components from leaking styles
  • Fixing bugs and regressions
  • Publishing your app online

Ember Octane helps you quickly solve these problems so that you can focus on what matters: delivering features and finishing your app on time.

Outcomes

The workshop will take 1 - 1.5 hours. By the end, you will be able to:

  • Use Ember CLI to create your app
  • Commit your code on GitHub
  • See what Ember recommends for project structure
  • Create routes and components
  • Use Sass + Ember CSS Modules to localize a component's styles
  • Use Ember Data + Mirage + Faker to mock API and manage data
  • Use QUnit DOM + Ember Test Selectors + Mirage to write application tests
  • Publish your app on Heroku

If time permits, you will be briefly introduced to:

  • Tailwind for prototyping styles
  • Publishing your app on GitHub Pages or Netlify
  • Tracked properties and element modifiers

Todos before the workshop

If you run into problems with these steps, feel free to contact Isaac (@ijlee2) on Discord.

1. Install Ember CLI

Please install Node (10.x or higher recommended) and Ember CLI on your machine.

$ npm install -g ember-cli

You can run ember --version to verify that your installation was successful. You will see an output similar to:

$ ember -v
ember-cli: 3.15.2
node: 12.14.1
os: darwin x64

2. Install Ember Inspector

Ember Inspector is a browser extension, a useful tool for debugging. It lets you interact with the Ember Data store, among many other things.

3. Create GitHub and Heroku accounts

We will push our code on GitHub and publish our app on Heroku. (Trivia: Heroku Dashboard is an Ember app.)

If time permits, I will point out how you can publish your app on GitHub Pages or Netlify.

4. IDE Plugins (optional)

If you use VS Code, there are official and many community-driven plugins for syntax highlight, auto-completion, etc. in Ember.

That said, feel free to use the editor that you feel most comfortable with. I will be using Sublime Text.

About

Ember Octane workshop for Austin Code Mentorship

https://acm-octane.herokuapp.com/


Languages

Language:JavaScript 68.1%Language:Handlebars 12.2%Language:SCSS 11.4%Language:HTML 8.4%