How can i migrate an Angular website to another webhosting?

kurosaki4d

Power Member
Joined
Apr 24, 2018
Messages
694
Reaction score
83
Hello,

I wanted to know the process to migrate an Angular website.

I'm quite familiar with wordpress and the webhosting environment. I've done plenty of wordpress migrations in the past by export mysql database and the files aswell.

However, i was wondering if it's the same process with Angular or are there any differences i should know about ?

Thank you in advance for your help !
 
Depends how your project was built. Usually it suffices to copy the dist/projectname folder and move it to the new vps
 
Thank you for your quick replies guys !

Depends how your project was built. Usually it suffices to copy the dist/projectname folder and move it to the new vps
Moving just the folder ? is the database located in the folder aswell, it's all in there ?

You said "VPS" ? is that mandatory or does shared hosting does the job too ?


current web host --> github ---> other web host
You mean move manually the all github folder to the new host ? Are angular websites usualy lighter or heavier than other websites ?
 
You can just zip it all and send it over instantly to the new VPS or whatever you are hosting it on.
 
Thank you for your quick replies guys !


Moving just the folder ? is the database located in the folder aswell, it's all in there ?

You said "VPS" ? is that mandatory or does shared hosting does the job too ?



You mean move manually the all github folder to the new host ? Are angular websites usualy lighter or heavier than other websites ?

No, angular is only front-end it does not include any databases. You can host in on shared hosting but I haven't done it personally. I host all my projects on a VPS since I have full control and it's usually faster and cheaper.

Depending on the type of database you're using you can make a dump of your current DB and use that to import on your new host. It's hard to give advice without knowing the architecture behind the application.
 
That's what i needed to know !

Thank you very much for the valuable informations, you've been very much helpful guys. I appreciate it !
 
Back
Top