Compare commits
3 Commits
4028675dd0
...
d5c6a468eb
| Author | SHA1 | Date | |
|---|---|---|---|
| d5c6a468eb | |||
| bf0d156221 | |||
| a86cb030d5 |
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -2,6 +2,13 @@ def deploy() {
|
|||||||
node('ubuntu') {
|
node('ubuntu') {
|
||||||
try {
|
try {
|
||||||
checkout scm
|
checkout scm
|
||||||
|
|
||||||
|
// Only deploy from main branch
|
||||||
|
def branch = env.BRANCH_NAME ?: sh(script: 'git rev-parse --abbrev-ref HEAD', returnStdout: true).trim()
|
||||||
|
if (branch != 'main') {
|
||||||
|
echo "Skipping deployment: not on main branch (current branch: ${branch})"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
nodejs(nodeJSInstallationName: 'Node23') {
|
nodejs(nodeJSInstallationName: 'Node23') {
|
||||||
stage('Install') {
|
stage('Install') {
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
|
|
||||||
# The Hideout UI
|
# The Hideout UI
|
||||||
|
|
||||||
|
[](https://ci.tombutcher.work/job/thehideout/job/TheHideout-UI/job/main/)
|
||||||
|
|
||||||
This is the front-end web application for **The Hideout** ([thehideoutltd.com](https://thehideoutltd.com)), built with **React.js** and hosted on **Cloudflare Pages**. The website showcases rental properties with beautiful image galleries, property details, booking integrations, and a contact form for inquiries.
|
This is the front-end web application for **The Hideout** ([thehideoutltd.com](https://thehideoutltd.com)), built with **React.js** and hosted on **Cloudflare Pages**. The website showcases rental properties with beautiful image galleries, property details, booking integrations, and a contact form for inquiries.
|
||||||
|
|
||||||
## Tech Stack
|
## Tech Stack
|
||||||
|
|||||||
@ -975,6 +975,7 @@ hr.th-divider {
|
|||||||
border-top-left-radius: 10px;
|
border-top-left-radius: 10px;
|
||||||
border-top-right-radius: 10px;
|
border-top-right-radius: 10px;
|
||||||
border-bottom: 1px solid var(--th-textColor);
|
border-bottom: 1px solid var(--th-textColor);
|
||||||
|
padding-top: 66.6667%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.th-property-card-placeholder-image {
|
.th-property-card-placeholder-image {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user