mamur
mamur

Reputation: 371

Cloning hybris project to local machine

I am new in hybris. I have been given a task that to copy hybris project from server and run it on local machine.

Can someone please give some advise how to move existing project from server to local pc and what I need to change in files.

Upvotes: 2

Views: 652

Answers (1)

alain.janinm
alain.janinm

Reputation: 20065

The best way is to unzip on your local installation the hybris archive corresponding to the hybris version in production.

Then you copy/paste only the custom directory from your prod env (custom contains the custom code only).

You might also need to copy the config folder and you might have to change some configuration but this depends on how your project was implemented.

Once you have hybris + custom code + config run ant clean all then run ant initialize to create the db. If all works, finally run hybrisserver to start the server.

Note that this procedure is quite standard and you probably will have to do more steps that are related to your project.

Upvotes: 1

Related Questions