Skip to content

Commit 91e36e4

Browse files
committed
feat: Replace name 'bibimbap' with 'coduck'
1 parent 583222b commit 91e36e4

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DATABASE_URL="postgres://postgres:password@localhost:5432/bibimbap"
1+
DATABASE_URL="postgres://postgres:password@localhost:5432/coduck"

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "bibimbap-backend"
2+
name = "coduck-backend"
33
version = "0.1.0"
44
edition = "2021"
55

@@ -8,7 +8,7 @@ path = "src/lib.rs"
88

99
[[bin]]
1010
path = "src/main.rs"
11-
name = "bibimbap-backend"
11+
name = "coduck-backend"
1212

1313
[dependencies]
1414
rocket = "0.5.1"

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# Bibimbap
2-
A platform for creation of programming contest problems heavily inspired by Polygon
1+
# Coduck
2+
3+
A platform for the creation of programming contest problems heavily inspired by Polygon

scripts/init_db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818

1919
DB_USER=${POSTGRES_USER:=postgres}
2020
DB_PASSWORD="${POSTGRES_PASSWORD:=password}"
21-
DB_NAME="${POSTGRES_DB:=bibimbap}"
21+
DB_NAME="${POSTGRES_DB:=coduck}"
2222
DB_PORT="${POSTGRES_PORT:=5432}"
2323
DB_HOST="${POSTGRES_HOST:=localhost}"
2424

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use bibimbap_backend::run;
1+
use coduck_backend::run;
22

33
#[rocket::main]
44
async fn main() {

tests/health_check.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rocket::{Build, Rocket};
77
use std::io::Read;
88

99
fn spawn_app() -> Rocket<Build> {
10-
bibimbap_backend::run()
10+
coduck_backend::run()
1111
}
1212

1313
#[test]

0 commit comments

Comments
 (0)