Reputation: 6946
I have created n new angular app using angular-cli.
I completed the app and preview it using ng-serve, it is working perfectly.
After that I used ng build --prod, that generates the 'dist' folder. When I put that folder in xampp to run, it is not working. I found that there is no *.js files, which should be in there after *.ts -> *.js conversion (i suppose).
I have attached the screenshot, in which on left side it is showing the src folder having all .ts files, On middle it is showing the 'dist' folder and browser screenshot.
Please guide me how can I generate fully working app from angular-cli, which I can run in my xampp server.
Screenshot:
Upvotes: 36
Views: 50360
Reputation: 3534
http-server doesn't support client-side routing, so nothing other than your base URL is going to work. Instead, you can use angular-http-server:
npm install -g angular-http-server
ng build --prod
cd dist
angular-http-server
This should only be used to test the app locally before deploying it on a Web server. To learn how to actually deploy the app on a Web server, check out the Angular.io article on deployment, which discusses considerations to make when building for deployment and provides configurations for a variety of different Web servers commonly used in production.
Upvotes: 0
Reputation: 1408
If anyone is working with Nginx, then here is the complete solution:
Suppose you want to deploy your angular app at HOST: http://example.com
and PORT: 8080
Note - HOST and PORT might be different in your case.
Make sure you have <base href="/">
in you index.html head tag.
Firstly, go to your angular repo (i.e. /home/user/helloWorld) path at your machine.
Then build /dist for your production server using the following command:
ng build --prod --base-href http://example.com:8080
Now copy /dist (i.e. /home/user/helloWorld/dist) folder from your machine's angular repo to the remote machine where you want to host your production server.
Now login to your remote server and add following nginx server configuration.
server {
listen 8080;
server_name http://example.com;
root /path/to/your/dist/location;
# eg. root /home/admin/helloWorld/dist
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
# This will allow you to refresh page in your angular app. Which will not give error 404.
}
}
Now restart nginx.
That's it !! Now you can access your angular app at http://example.com:8080
Hope it will be helpful.
Upvotes: 0
Reputation: 6432
method 1(popular one) : If you are using angular-cli, then
ng build --prod
will do the trick. Then you can copy everything from .dist
folder to your server folder
method 2 :
you can use http-server to serve your app . To install http-server
npm install http-server -g
and after going to your project folder
http-server ./dist
it will serve all the files in your folder. you can check the terminal what ip-address and port you can use to access the application. Now open up your browser and type
ip-adress:port/index.html
Hope it will help you :)
Bonus : If you want to deploy in heroku. Please go through this detailed tutorial https://medium.com/@ryanchenkie_40935/angular-cli-deployment-host-your-angular-2-app-on-heroku-3f266f13f352
Upvotes: 50
Reputation: 618
Use ng build
with the --bh
flag
Sets base tag href to /myUrl/ in your index.html:
ng build --base-href /myUrl/
ng build --bh /myUrl/
Upvotes: 3
Reputation: 11
I am currently using Angular-CLI 1.0.0-beta.32.3
in the root directory of your project run npm install http-server -g
after successful installation run ng build --prod
upon successful build run http-server ./dist
Upvotes: 1
Reputation: 265
Check your index.html file and edit this line
<base href="/[your-project-folder-name]/dist/">
Your content should load properly. You can then load styles globally
You should set base href as recommended by Johan
ng build --prod --bh /[your-project-folder-name]/dist/
Upvotes: 9
Reputation: 1779
Here's an example with Heroku:
Create a Heroku account and install the CLI
Move the angular-cli
dep to the dependencies
in package.json
(so that it gets installed when you push to Heroku.
Add a postinstall
script that will run ng build
when the code gets pushed to Heroku. Also add a start command for a Node server that will be created in the following step. This will place the static files for the app in a dist
directory on the server and start the app afterward.
"scripts": {
// ...
"start": "node server.js",
"postinstall": "ng build --aot -prod"
}
// server.js
const express = require('express');
const app = express();
// Run the app by serving the static files
// in the dist directory
app.use(express.static(__dirname + '/dist'));
// Start the app by listening on the default
// Heroku port
app.listen(process.env.PORT || 8080);
heroku create
git add .
git commit -m "first deploy"
git push heroku master
Here's a quick writeup I did that has more detail, including how to force requests to use HTTPS and how to handle PathLocationStrategy
:)
Upvotes: 4
Reputation: 1845
For anyone looking for an answer for IIS hosting...
Build your project
ng build --prod
Copy all contents of the ./dist folder into the root folder of your website maintaining the folder structure within ./dist (ie - don't move anything around). Using the Beta-18 version of the angular-cli all assets (images in my case) were copied to ./dist/assets during the build and were referenced correctly in their containing components.
Upvotes: 16
Reputation: 36
I'm using the latest version of the Angular-CLI (at the time of this reply its 1.0.0Beta-18)
The way this version works is it puts everything in bundle files and it calls them in the index.html file. After that you have to copy your assets over to the dist folder (for some reason it does not do that). Finally, double check your base href make sure its set to what it needs to be set to and then it should work. That's what worked for me and I've tested on both Apache and Node.
Upvotes: 1