I believe I may be missing something simple, everything is working Except when I try to do the production build.
I have followed all directions on the md
so I am on a win7 box and deploying to IIS (I have tries AWS as well in Docker container to no avail -- both give me the same result)
looking at the dist folder==> there is no assets directory, which I believe is causing a lot of the headache (it is, however, inside /public/assets/)
going to App.html
gives me a basic html page (toggle navigation button, then two links that do nothing)
Console shows this (which leads to my believe that assets is going in the wrong place, but even pushing it to root has no effect
Failed to load resource: the server responded with a status of 404 (Not Found)
http://**/assets/us.png Failed to load resource: the server responded with a status of 404 (Not Found)
http://**.elasticbeanstalk.com/assets/preload5.gif Failed to load resource: the server responded with a status of 404 (Not Found)
if I go to /public/ I see the below in the console. (it starts to work but fails and never goes past the loading screen)
git clone https://github.com/born2net/Angular-kitchen-sink.git
cd Angular-kitchen-sink
npm install -g jspm@beta
npm install -g gulp
npm install
npm install typescript
npm install chokidar-socket-emitter --save-dev
npm install http-server --save-dev
jspm install systemjs-hot-reloader --dev
gulp development & npm run devserver
works like a champ
gulp production
(removed "x_clear_remote",
"x_rsync",
"x_rsync") --> just doing a manual deployment out of /dist/ right now
I love the samples, but my main issue right now is getting a reliable build/bundling tool for NG2 and I keep stumbling! Hope my noob issues are easy for you to resolve.
I believe I may be missing something simple, everything is working Except when I try to do the production build.
I have followed all directions on the md
so I am on a win7 box and deploying to IIS (I have tries AWS as well in Docker container to no avail -- both give me the same result)
looking at the dist folder==> there is no assets directory, which I believe is causing a lot of the headache (it is, however, inside /public/assets/)
going to App.html gives me a basic html page (toggle navigation button, then two links that do nothing) Console shows this (which leads to my believe that assets is going in the wrong place, but even pushing it to root has no effect
I have followed these directions from the MD
I love the samples, but my main issue right now is getting a reliable build/bundling tool for NG2 and I keep stumbling! Hope my noob issues are easy for you to resolve.