Find a very sad bug
This commit is contained in:
parent
b96c4ca7eb
commit
90611561e3
16
README.md
16
README.md
|
@ -8,12 +8,14 @@ Check it out at the <https://riju.codes>!
|
||||||
|
|
||||||
## Is it free?
|
## Is it free?
|
||||||
|
|
||||||
Riju is free and always will be free for everyone.
|
Riju will always be free for everyone. I pay for the hosting costs
|
||||||
|
myself.
|
||||||
|
|
||||||
However, if Riju gets popular enough, I won't be able to afford paying
|
A number of people have asked me if they can donate to help keep Riju
|
||||||
for the hosting myself. To help me keep Riju online, you can donate
|
online. In response, I have set up [a Patreon
|
||||||
via Patreon. All donations are used solely to cover hosting costs, and
|
page](https://www.patreon.com/riju) where you can contribute. All
|
||||||
any surplus is donated to the [Electronic Frontier
|
donations will be used solely to cover hosting costs, and any surplus
|
||||||
|
will be donated to the [Electronic Frontier
|
||||||
Foundation](https://www.eff.org/).
|
Foundation](https://www.eff.org/).
|
||||||
|
|
||||||
## Is it safe?
|
## Is it safe?
|
||||||
|
@ -31,8 +33,8 @@ All of the above notwithstanding, any service that allows people to
|
||||||
run code online is inherently risky. For this reason, I can't make any
|
run code online is inherently risky. For this reason, I can't make any
|
||||||
guarantees about the security or privacy of your data.
|
guarantees about the security or privacy of your data.
|
||||||
|
|
||||||
Please see [Reporting a security issue](SECURITY.md).
|
See also [Reporting a security issue](SECURITY.md).
|
||||||
|
|
||||||
## Can I help?
|
## Can I help?
|
||||||
|
|
||||||
Please see [Contributing guide](CONTRIBUTING.md).
|
Absolutely, please see [Contributing guide](CONTRIBUTING.md).
|
||||||
|
|
|
@ -11,7 +11,7 @@ resource "aws_backup_plan" "riju" {
|
||||||
schedule = "cron(0 5 ? * * *)"
|
schedule = "cron(0 5 ? * * *)"
|
||||||
|
|
||||||
lifecycle {
|
lifecycle {
|
||||||
delete_after = 7
|
delete_after = 3
|
||||||
}
|
}
|
||||||
|
|
||||||
recovery_point_tags = {
|
recovery_point_tags = {
|
||||||
|
|
|
@ -42,6 +42,7 @@ resource "aws_instance" "dev_server" {
|
||||||
|
|
||||||
root_block_device {
|
root_block_device {
|
||||||
volume_size = 256
|
volume_size = 256
|
||||||
|
volume_type = "gp3"
|
||||||
|
|
||||||
tags = merge(local.tags, {
|
tags = merge(local.tags, {
|
||||||
Name = "Riju dev server"
|
Name = "Riju dev server"
|
||||||
|
|
|
@ -529,14 +529,14 @@ async function executeDepGraph({
|
||||||
for (const target of priorityTargets) {
|
for (const target of priorityTargets) {
|
||||||
for (const dep of artifacts[target].dependencies) {
|
for (const dep of artifacts[target].dependencies) {
|
||||||
if (artifacts[target].publishTarget) {
|
if (artifacts[target].publishTarget) {
|
||||||
if (statuses === "publishToRegistry") {
|
if (statuses[dep] === "publishToRegistry") {
|
||||||
plan.push({
|
plan.push({
|
||||||
artifact: dep,
|
artifact: dep,
|
||||||
action: "publishToRegistry",
|
action: "publishToRegistry",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (statuses === "retrieveFromRegistry") {
|
if (statuses[dep] === "retrieveFromRegistry") {
|
||||||
plan.push({
|
plan.push({
|
||||||
artifact: dep,
|
artifact: dep,
|
||||||
action: "retrieveFromRegistry",
|
action: "retrieveFromRegistry",
|
||||||
|
|
Loading…
Reference in New Issue