Compare commits
No commits in common. "main" and "v0.0.1" have entirely different histories.
3 changed files with 20 additions and 67 deletions
24
.drone.yml
24
.drone.yml
|
@ -1,8 +1,7 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: deploy_dev
|
name: deploy_dev
|
||||||
node:
|
|
||||||
environment: ryali
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
- main
|
- main
|
||||||
|
@ -13,15 +12,19 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
- rm -rf /bonfire_dev/*
|
|
||||||
- mv ./build/* /bonfire_dev/
|
- name: deploy
|
||||||
|
image: byteflair/scp
|
||||||
|
commands:
|
||||||
|
- ssh 'light@5.75.206.84' 'rm -rf /home/light/bonfire_dev/*'
|
||||||
|
- mv ./build ./bonfire_dev
|
||||||
|
- scp -r './bonfire_dev/' 'light@5.75.206.84:/home/light/'
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: deploy_prod
|
name: deploy_prod
|
||||||
node:
|
|
||||||
environment: ryali
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
@ -32,5 +35,10 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
- rm -rf /bonfire/*
|
|
||||||
- mv ./build/* /bonfire/
|
- name: deploy
|
||||||
|
image: byteflair/scp
|
||||||
|
commands:
|
||||||
|
- ssh 'light@5.75.206.84' 'rm -rf /home/light/bonfire/*'
|
||||||
|
- mv ./build ./bonfire
|
||||||
|
- scp -r './bonfire/' 'light@5.75.206.84:/home/light/'
|
||||||
|
|
|
@ -1,66 +1,11 @@
|
||||||
<div>
|
<div>
|
||||||
<span class="text-2xl">Portfolio under construction...</span>
|
<span class="text-2xl">Portfolio under construction...</span>
|
||||||
<br />
|
<br />
|
||||||
|
This is some text using the primary text color :3 <!------>
|
||||||
If you felt disappointed, let it be a practice to control your expectations... But I promise to
|
|
||||||
tidy this place up soon!!! :D
|
|
||||||
<br />
|
<br />
|
||||||
|
And some <span class="text-accent_text"> accented </span> text
|
||||||
Anyways, here are some links to all my <span class="text-accent_text"> social handles </span>:
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Mail:
|
|
||||||
<a href="mailto:light7734@tuta.io" class="text-blue"> light7734@tuta.io </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Youtube:
|
|
||||||
<a href="https://www.youtube.com/@light.7734" class="text-blue"> @light.7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Twitter:
|
|
||||||
<a href="https://x.com/light7734" class="text-blue"> @light7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Bluesky:
|
|
||||||
<a href="https://bsky.app/profile/light7734.bsky.social" class="text-blue"> @light7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Reddit:
|
|
||||||
<a href="https://www.reddit.com/user/Light7734/" class="text-blue"> u/light7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Itcho.io:
|
|
||||||
<a href="https://light7734.itch.io/" class="text-blue"> light7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Discord: @light7734
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Discord Community: @light7734
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Telegram Dailies: soon
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Instagram: soon
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Forgejo (git repos):
|
|
||||||
<a href="https://git.light7734.com/light7734" class="text-blue"> git.light7734.com </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Codeberg (mirrors):
|
|
||||||
<a href="https://codeberg.org/light7734" class="text-blue"> @light7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Github (mirrors):
|
|
||||||
<a href="https://codeberg.org/light7734" class="text-blue"> @light7734 </a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
Gitlab (mirrors):
|
|
||||||
<a href="https://gitlab.com/Light7734" class="text-blue"> @light7734 </a>
|
|
||||||
<br />
|
<br />
|
||||||
|
And some <span class="text-muted_text"> muted </span> text <!------>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Brief Bio
|
<!-- Brief Bio
|
||||||
|
|
|
@ -21,7 +21,7 @@ export default {
|
||||||
|
|
||||||
red: '#000000',
|
red: '#000000',
|
||||||
green: '#000000',
|
green: '#000000',
|
||||||
blue: '#83a598',
|
blue: '#000000',
|
||||||
yellow: '#000000'
|
yellow: '#000000'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue