-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13a59d4
commit 64c785c
Showing
8 changed files
with
11,339 additions
and
20,323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,6 @@ | |
/.node_modules.ember-try/ | ||
/bower.json.ember-try | ||
/package.json.ember-try | ||
|
||
.DS_Store* | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
{{outlet}} | ||
<div class="postContentStyle"> | ||
<h3>Introduction:</h3> | ||
|
||
<b>Living life openly. This year I set the following goals. Below you can find | ||
the progress on each.</b> | ||
|
||
<br>Software Engineer at MMSG | ||
<br>location | ||
<br>Salt Lake City | ||
<br>education | ||
<br>University of California, San Diego | B.A. | ||
<br>joined | ||
<br>Mar 21, 2019 | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1 @@ | ||
<div class="postContentStyle"> | ||
<h3>Introduction:</h3> | ||
|
||
<b>Living life openly. This year I set the following goals. Below you can find | ||
the progress on each.</b> | ||
|
||
<br>Software Engineer at MMSG | ||
<br>location | ||
<br>Salt Lake City | ||
<br>education | ||
<br>University of California, San Diego | B.A. | ||
<br>joined | ||
<br>Mar 21, 2019 | ||
|
||
</div> | ||
<iframe class="pdfSetting" src="/assets/resume.pdf" frameborder="0"></iframe> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,58 @@ | ||
'use strict'; | ||
"use strict" | ||
|
||
module.exports = function(environment) { | ||
let ENV = { | ||
modulePrefix: 'ember-blog', | ||
modulePrefix: "ember-blog", | ||
environment, | ||
rootURL: '/', | ||
locationType: 'auto', | ||
rootURL: "/", | ||
locationType: "auto", | ||
EmberENV: { | ||
FEATURES: { | ||
// Here you can enable experimental features on an ember canary build | ||
// e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true | ||
}, | ||
EXTEND_PROTOTYPES: { | ||
// Prevent Ember Data from overriding Date.parse. | ||
Date: false | ||
} | ||
Date: false, | ||
}, | ||
}, | ||
|
||
APP: { | ||
// Here you can pass flags/options to your application instance | ||
// when it is created | ||
} | ||
}; | ||
}, | ||
} | ||
//TURN OFF MIRAGE WHEN SERVER IS ON | ||
ENV['ember-cli-mirage'] = { enabled: true, autostart: true }; | ||
ENV["ember-cli-mirage"] = { enabled: true, autostart: true } | ||
ENV.contentSecurityPolicy = { | ||
// ... other stuff here | ||
"connect-src": "'self' http://localhost:4200", | ||
} | ||
|
||
if (environment === 'development') { | ||
if (environment === "development") { | ||
// ENV.APP.LOG_RESOLVER = true; | ||
// ENV.APP.LOG_ACTIVE_GENERATION = true; | ||
// ENV.APP.LOG_TRANSITIONS = true; | ||
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true; | ||
// ENV.APP.LOG_VIEW_LOOKUPS = true; | ||
} | ||
|
||
if (environment === 'test') { | ||
if (environment === "test") { | ||
// Testem prefers this... | ||
ENV.locationType = 'none'; | ||
ENV.locationType = "none" | ||
|
||
// keep test console output quieter | ||
ENV.APP.LOG_ACTIVE_GENERATION = false; | ||
ENV.APP.LOG_VIEW_LOOKUPS = false; | ||
ENV.APP.LOG_ACTIVE_GENERATION = false | ||
ENV.APP.LOG_VIEW_LOOKUPS = false | ||
|
||
ENV.APP.rootElement = '#ember-testing'; | ||
ENV.APP.autoboot = false; | ||
ENV.APP.rootElement = "#ember-testing" | ||
ENV.APP.autoboot = false | ||
} | ||
|
||
if (environment === 'production') { | ||
if (environment === "production") { | ||
// here you can enable a production-specific feature | ||
ENV.rootURL = '/Ember-Blog/'; | ||
ENV.rootURL = "/Ember-Blog/" | ||
} | ||
|
||
return ENV; | ||
}; | ||
return ENV | ||
} |
Oops, something went wrong.