Compare commits
13 commits
articles/g
...
main
Author | SHA1 | Date | |
---|---|---|---|
e00792fa6b | |||
e66a26a209 | |||
3508957c22 | |||
df3743c59f | |||
b453be95bc | |||
c18e6fe7ce | |||
99391b4cb8 | |||
9d5234f149 | |||
63d0a38af2 | |||
51c341f2ab | |||
306ad8ed63 | |||
7a626d81ab | |||
4a1ecdb811 |
3 changed files with 33 additions and 33 deletions
42
.drone.yml
42
.drone.yml
|
@ -1,13 +1,35 @@
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: deploy_dev
|
||||||
|
node:
|
||||||
|
environment: ryali
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build_deploy
|
- name: build and deploy
|
||||||
privileged: true
|
image: node:latest
|
||||||
image: node:latest
|
commands:
|
||||||
commands:
|
- npm install
|
||||||
- rm -rf ./node_modules
|
- npm run build
|
||||||
- npm install
|
- rm -rf /dazzle_dev/*
|
||||||
- npm run build
|
- mv ./build/* /dazzle_dev/
|
||||||
- cp -r ./build/* /dazzle/
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: deploy_prod
|
||||||
|
node:
|
||||||
|
environment: ryali
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build and deploy
|
||||||
|
image: node:latest
|
||||||
|
commands:
|
||||||
|
- npm install
|
||||||
|
- npm run build
|
||||||
|
- rm -rf /dazzle/*
|
||||||
|
- mv ./build/* /dazzle/
|
||||||
|
|
|
@ -13,10 +13,9 @@
|
||||||
|
|
||||||
Dazzle is an effort to <strong>solidify</strong> my understading of the complex world of
|
Dazzle is an effort to <strong>solidify</strong> my understading of the complex world of
|
||||||
computers. and to give back to the <strong>community</strong> 💖.
|
computers. and to give back to the <strong>community</strong> 💖.
|
||||||
<br />
|
|
||||||
Please enjoy ;)
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<br />
|
||||||
<h2 style:padding="0">The Graphics Pipeline</h2>
|
<h2 style:padding="0">The Graphics Pipeline</h2>
|
||||||
<Note type="none" flow="true">
|
<Note type="none" flow="true">
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -2,24 +2,3 @@
|
||||||
title: C++ Technical Debt
|
title: C++ Technical Debt
|
||||||
date: "April 20 - 2025"
|
date: "April 20 - 2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
|
||||||
import Paragraph from '../Paragraph.svelte';
|
|
||||||
import HorizontalBreak from '../HorizontalBreak.svelte';
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<HorizontalBreak/>
|
|
||||||
|
|
||||||
<Paragraph>
|
|
||||||
|
|
||||||
Have you ever had your project grow too messy that the idea of **total-rewrite** started haunting your
|
|
||||||
dreams? In this article I'll teach you how to avoid that state forever :)
|
|
||||||
</Paragraph>
|
|
||||||
|
|
||||||
|
|
||||||
## Technical Debt
|
|
||||||
|
|
||||||
<Paragraph>
|
|
||||||
|
|
||||||
What causes such a state?
|
|
||||||
</Paragraph>
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue