- Pastikan sudah ter-install PHP 7.2 keatas
- Install Composer (jika belum ada)
- Clone Repo ->
git clone https://gitlab.com/solopos-dev/solopos-desktop.git
- Masuk ke direktori project ->
cd solopos-desktop
- Jalankan
composer install
- copy .env.example menjadi .env ->
cp .env.example .env
- Jalankan
php artisan key:generate
- Test local dengan mengetikkan
php artisan serve
- Pastikan selalu update repository local sebelum melakukan perubahan/penambahan script ->
git pull origin master
- Tambah pembaruan script ->
git add [nama-file] atau git add .
- Commit kode ->
git commit -m "isi pesan/catatan"
- Push kode ke repo ->
git push -u origin master