You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importApplicationfrom'@ember/application';importResolverfrom'ember-resolver';importloadInitializersfrom'ember-load-initializers';importconfigfrom'caluma-demo/config/environment';exportdefaultclassAppextendsApplication{modulePrefix=config.modulePrefix;podModulePrefix=config.podModulePrefix;Resolver=Resolver;engines={"@projectcaluma/ember-form-builder": {dependencies: {services: ["apollo",// ember-apollo-client for graphql"notification",// ember-uikit for notifications"intl",// ember-intl for i18n"caluma-options",// service to configure ember-caluma"validator"// service for generic regex validation]}}}}loadInitializers(App,config.modulePrefix);
It seems the extend instruction have change, not sure if this works.
environment.js
'use strict';module.exports=function(environment){constENV={modulePrefix: 'caluma-demo',
environment,rootURL: '/',locationType: 'history',EmberENV: {EXTEND_PROTOTYPES: false,FEATURES: {// Here you can enable experimental features on an ember canary build// e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true},},apollo: {apiURL: "/graphql"},APP: {// Here you can pass flags/options to your application instance// when it is created},};//..
Thank you for the detailed bug report and sorry about the late reply! I was able to reproduce the issue. We currently have an issue with the 0.9.x release of ember-engines: ember-engines/ember-engines#833
For me, explicitly installing an older version of ember-engines fixes the issue - can you try and see if this does the trick for you as well?
@janikvonrotz Turns out the root cause for the issue with ember-engines >= 0.9 was caused by another addon we maintain, ember-uikit. If you make sure you have the latest release of ember-uikit (7.0.3), you don't need to downgrade ember-engines anymore 👍
Hi
I tried to familiarize myself with the calluma project and therefore tried to setup a demo instance using this guide: https://caluma.gitbook.io/caluma-docs/guides/guide
In the end I got a blank page in the browser and this error:
I assume this can be resolved by using the exact Node / NPM / Ember versions.
Server
Started the docker project according to the guide.
Client
Installed the ember dependencies:
The server started. Next I installed the ember projectcaluma package:
And updated the files according to the guidE:
router.js
app.js
It seems the extend instruction have change, not sure if this works.
environment.js
ember-cli-build.js
app.scss
Does not exist anymore. It seems ember has removed scss suppport.
Last step I did:
And then got the error.
The text was updated successfully, but these errors were encountered: