-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d2486ba
Showing
37 changed files
with
9,640 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>WISATA INDONESIA DEV</title> | ||
</head> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" | ||
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" | ||
/> | ||
<body style="background-color: #00233c; margin-bottom: 50px"> | ||
<div class="container" style="width: 100%; display: flex"> | ||
<div class="wrapper"> | ||
<h1>API DOKUMENTASI WISATA INDONESIA DEV</h1> | ||
<p> | ||
API Wisata Indonesia Kita menyediakan data lengkap mengenai provinsi | ||
Indonesia dan rekomendasi wisata di dalamnya. | ||
</p> | ||
<p> | ||
URL : | ||
<a href="" style="color: rgb(43, 110, 226)">wisataindonesiadev</a> | ||
</p> | ||
<p style="margin-top: 10px"> | ||
Api ini berisi data seluruh wilayah indonesia mulai dari : | ||
</p> | ||
<ul style="color: white; margin-left: 20px"> | ||
<li>Provinsi</li> | ||
<li>Rekomendasi Wisata</li> | ||
</ul> | ||
<p style="margin-top: 10px">Wisata Berisi data seperti :</p> | ||
<ul style="color: white; margin-left: 20px"> | ||
<li>Nama</li> | ||
<li>Alamat</li> | ||
<li>Gambar</li> | ||
<li>Link</li> | ||
<li>Rating</li> | ||
<li>Dan lainnya</li> | ||
</ul> | ||
<div style="display: flex; margin-top: 10px"> | ||
<a | ||
href="" | ||
style=" | ||
margin-right: 15px; | ||
color: white; | ||
text-decoration: none; | ||
padding: 6px; | ||
border-radius: 5px; | ||
border: 1px solid white; | ||
" | ||
><i | ||
class="fa-solid fa-user" | ||
style="color: #ffffff; margin-right: 5px" | ||
></i> | ||
Author</a | ||
> | ||
<a | ||
href="" | ||
style=" | ||
margin-right: 15px; | ||
color: white; | ||
text-decoration: none; | ||
padding: 6px; | ||
border-radius: 5px; | ||
border: 1px solid white; | ||
" | ||
><i | ||
class="fa-brands fa-github" | ||
style="color: #ffffff; margin-right: 5px" | ||
></i | ||
>Source Code</a | ||
> | ||
</div> | ||
<p style="margin-top: 10px">Endpoint :</p> | ||
<p style="margin-top: 10px">Provinsi</p> | ||
<div class="path"> | ||
<p>http://localhost:3000/provinsi</p> | ||
<button class="get" id="getProvinsi">GET</button> | ||
</div> | ||
|
||
<p style="color: aqua; margin-top: -30px">Response</p> | ||
<div class="path" id="response" style="display: none"> | ||
<pre class="pre" style="color: white" id="responsePre"></pre> | ||
</div> | ||
|
||
<p style="margin-top: 40px; margin-bottom: 5px">Wisata</p> | ||
<input | ||
type="text" | ||
name="" | ||
class="input" | ||
placeholder="Masukkan Kode Provinsi" | ||
/> | ||
<div class="path"> | ||
<p class="kodeProvinsi"> | ||
http://localhost:3000/wisata/{kode provinsi} | ||
</p> | ||
<button class="get" id="getWisata">GET</button> | ||
</div> | ||
|
||
<p style="color: aqua; margin-top: -30px">Response</p> | ||
<div class="path" id="responseWisata" style="display: none"> | ||
<pre class="pre" style="color: white" id="responsePreWisata"></pre> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
[ | ||
{ | ||
"id": "1", | ||
"name": "Aceh" | ||
}, | ||
{ | ||
"id": "2", | ||
"name": "Bali" | ||
}, | ||
{ | ||
"id": "3", | ||
"name": "Bangka Belitung" | ||
}, | ||
{ | ||
"id": "4", | ||
"name": "Banten" | ||
}, | ||
{ | ||
"id": "5", | ||
"name": "Bengkulu" | ||
}, | ||
{ | ||
"id": "6", | ||
"name": "Gorontalo" | ||
}, | ||
{ | ||
"id": "7", | ||
"name": "DKI Jakarta" | ||
}, | ||
{ | ||
"id": "8", | ||
"name": "Jambi" | ||
}, | ||
{ | ||
"id": "9", | ||
"name": "Jawa Barat" | ||
}, | ||
{ | ||
"id": "10", | ||
"name": "Jawa Tengah" | ||
}, | ||
{ | ||
"id": "11", | ||
"name": "Jawa Timur" | ||
}, | ||
{ | ||
"id": "12", | ||
"name": "Kalimantan Barat" | ||
}, | ||
{ | ||
"id": "13", | ||
"name": "Kalimantan Selatan" | ||
}, | ||
{ | ||
"id": "14", | ||
"name": "Kalimantan Tengah" | ||
}, | ||
{ | ||
"id": "15", | ||
"name": "Kalimantan Timur" | ||
}, | ||
{ | ||
"id": "16", | ||
"name": "Kalimantan Utara" | ||
}, | ||
{ | ||
"id": "17", | ||
"name": "Lampung" | ||
}, | ||
{ | ||
"id": "18", | ||
"name": "Maluku" | ||
}, | ||
{ | ||
"id": "19", | ||
"name": "Nusa Tenggara Barat" | ||
}, | ||
{ | ||
"id": "20", | ||
"name": "Nusa Tenggara Timur" | ||
}, | ||
{ | ||
"id": "21", | ||
"name": "Papua" | ||
}, | ||
{ | ||
"id": "22", | ||
"name": "Riau" | ||
}, | ||
{ | ||
"id": "23", | ||
"name": "Sulawesi Barat" | ||
}, | ||
{ | ||
"id": "24", | ||
"name": "Sulawesi Selatan" | ||
}, | ||
{ | ||
"id": "25", | ||
"name": "Sulawesi Tenggara" | ||
}, | ||
{ | ||
"id": "26", | ||
"name": "Sulawesi Utara" | ||
}, | ||
{ | ||
"id": "27", | ||
"name": "Sumatera Barat" | ||
}, | ||
{ | ||
"id": "28", | ||
"name": "Sumatera Selatan" | ||
}, | ||
{ | ||
"id": "29", | ||
"name": "Sumatera Utara" | ||
}, | ||
{ | ||
"id": "30", | ||
"name": "Yogyakarta" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Aceh DONE 20 - DONE ✅ gol aceh V siap | ||
Sulawesi Utara DONE 20 - DONE ✅ gol sulut V siap | ||
Sumatera Barat DONE 20 - DONE ✅ gol subar V siap | ||
Riau dan kepulauan DONE 20 - DONE ✅ gol riau V siap | ||
Jambi DONE 20 - DONE ✅ gol jambi V siap | ||
Sumatera Selatan DONE 20 - DONE ✅ gol sumsel V siap | ||
Bangka Belitung DONE 20 - DONE ✅ gol bangka V siap | ||
Bengkulu DONE 20 - DONE ✅ gol bengkulu V siap | ||
Lampung DONE 20 - DONE ✅ gol lampung V siap | ||
DKI Jakarta DONE 20 - DONE ✅ gol jakarta V siap | ||
Jawa Barat DONE 30 - DONE ✅ gol jawabarat V siap | ||
Banten DONE 20 - DONE ✅ del gol banten V siap | ||
Jawa Tengah DONE 30 - DONE ✅ del gol jawatengah V siap | ||
DI Yogyakarta DONE 30 - DONE ✅ del gol jogja V siap | ||
Jawa Timur DONE 30 - DONE ✅ del gol jawatimur V siap | ||
Bali DONE 30 - DONE ✅ gol bali V siap | ||
Nusa Tenggara Barat (NTB) DONE 20 - DONE ✅ del gol ntb V siap | ||
Nusa Tenggara Timur (NTT) DONE 20 - DONE ✅ gol ntt V siap | ||
Kalimantan Barat DONE 20 - DONE ✅ gol kalbar V siap | ||
Kalimantan Tengah DONE 20 - DONE ✅ del kalteng V siap | ||
Kalimantan Selatan DONE 20 - DONE ✅ gol kalsel V siap | ||
Kalimantan Timur DONE 20 - DONE ✅ del gol kaltim V siap | ||
Kalimantan Utara DONE 20 - DONE ✅ gol kalut V siap | ||
Sumatera Utara DONE 20 - DONE ✅ gol sumut V siap | ||
Sulawesi Barat DONE 20 - DONE ✅ del gol sulbar V siap | ||
Sulawesi Tengah DONE 20 - DONE ✅ gol sulteng zonk siap | ||
Sulawesi Selatan DONE 20 - DONE ✅ del gol sulsel zonk siap | ||
Sulawesi Tenggara DONE 20 - DONE ✅ gol sultenggara zonk siap | ||
Gorontalo DONE 20 - DONE ✅ gol gorontalo V siap | ||
Maluku DONE 20 - DONE ✅ gol maluku V siap | ||
Papua DONE 20 - DONE ✅ gol papua siap | ||
|
||
|
||
Dav : aceh - kalimantan timur | ||
Fer : kalimantan barat - sulawesi utara | ||
Dev : sumatera barat - yogyakarta |
Oops, something went wrong.