Skip to content

Instantly share code, notes, and snippets.

View realStandal's full-sized avatar
🦙

Ryan Lockard realStandal

🦙
  • Warren, Michigan
  • 03:23 (UTC -04:00)
View GitHub Profile
@cannikin
cannikin / site-config.conf
Last active January 20, 2022 05:10
nginx Config for Redwood Apps
# With this nginx config you'll be able to serve your static assets through nginx
# while serving the API from Redwood. Start your API server with `yarn rw serve api`
# (or better yet have pm2 manage it for you) and static assets will be delivered
# from /web/dist
#
# Static assets will be given max cache headers and gzipped.
#
# Note that this is only the config for a single site, not the entire global
# nginx config settings. Depending on your install, you may have a /etc/nginx/sites-available
# directory. This file goes in there, and then a symlink to it is added in
@isNotOkay
isNotOkay / index.js
Last active December 1, 2020 02:49
stateful button - storybook index.js (without knobs addon)
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {
MatButtonModule,
MatFormFieldModule,
MatIconModule,
MatInputModule,
MatProgressSpinnerModule
} from '@angular/material';
import {FlexLayoutModule} from '@angular/flex-layout';