Skip to content

Commit

Permalink
update: deploy api
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavvvvv committed Nov 15, 2024
1 parent 5c2bee8 commit dd63dd7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pages/deploy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function DeploymentForm() {
})
);

const response = await axios.post('http://35.227.177.48:8080/deploy', {
const response = await axios.post('https://35.227.177.48:8080/deploy', {
git_url: formData.git_url,
project_name: formData.project_name,
port: formData.port,
Expand Down Expand Up @@ -53,7 +53,7 @@ export default function DeploymentForm() {

<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label className="block text-sm font-medium mb-1">
<label className="block text-white text-sm font-medium mb-1">
Project Name
</label>
<input
Expand All @@ -66,7 +66,7 @@ export default function DeploymentForm() {
</div>

<div>
<label className="block text-sm font-medium mb-1">
<label className="block text-white text-sm font-medium mb-1">
GitHub URL
</label>
<input
Expand All @@ -79,7 +79,7 @@ export default function DeploymentForm() {
</div>

<div>
<label className="block text-sm font-medium mb-1">
<label className="block text-white text-sm font-medium mb-1">
Port
</label>
<input
Expand All @@ -92,7 +92,7 @@ export default function DeploymentForm() {
</div>

<div>
<label className="block text-sm font-medium mb-1">
<label className="block text-white text-sm font-medium mb-1">
Environment Variables (optional)
</label>
<textarea
Expand Down

0 comments on commit dd63dd7

Please sign in to comment.