How to start working ?
There are different ways to connect with your projects to doing your tasks and are depend to your conditions.
- Your project is on git:
- In this case you should give me the git clone statement in order to I get your codes, also need to give database backup file with the name of db-username (db-password not needed).
mysqldump -u yourDbUserName -p yourDbName>yourDbName.sql
then zip the file and give me the yourDbName.tar.gz file.
tar cvzf yourDbName.tar.gz yourDbName.sql
- Your project isn’t on git:
- In this case you should give me tar.gz backup of your codes and database separately.
tar –exclude=’./app/etc/env.php’ –exclude=’./pub/media/catalog/product’ –exclude=’./pub/static’ –exclude=’./var’ –exclude=’./backup’ –exclude=’./generated’ –exclude=’./.idea’ –exclude=’./.github’ -zcvf Archive.tar.gz /home/path to magento files (you should see the app folder)/.
Then give me the Archive.tar.gz, after that I got the zip file you should delete it.