0

I set up a server and database on Digital Ocean using Ploi.io. Ploi sent me an email that my server was created with the following info:

Server IP: 111.111.111.11
User: myUsername
Sudo password: XXXXXXXXXX

Database user: myUsername
Database password: XXXXXXXXX

I left out the real credentials. When I log in to Digital Ocean I confirm that my droplet was created.

droplet created on digital ocean

I've created a Laravel app and database on my local machine. How do I push my Laravel 5.6 app to this server and database?

Connor Leech
  • 18,052
  • 30
  • 105
  • 150

1 Answers1

2

I already replied to your e-mail, but I will clarify here as well.

You can SSH into the server with the 'ploi' user (ssh ploi@{IP}), with your SSH key added, you will automatically be granted access to your server.

To install a app on your server with Ploi, you can either use: github, gitlab, bitbucket or SFTP to upload your project.

You can add a website in ploi where you can install your project.

Dennis Smink
  • 450
  • 7
  • 22
  • 1
    Ahh you can connect through the UI and a deployment script will display! Very cool thank you. Tutorial here: https://medium.com/@connorleech/deploy-a-laravel-5-app-using-ploi-and-digital-ocean-1d27929d9516 – Connor Leech Jun 21 '18 at 18:12