Skip to content

Commit da4c19c

Browse files
authored
Rename elekto-io references to elekto-dev (#123)
* NEW: change elekto-io references to elekto-dev in python project and docs * NEW: rename elekto-io references to elekto-dev for scripts/validate-bios
1 parent 77a0806 commit da4c19c

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ DB_DATABASE=k8s
1515
DB_USERNAME=root
1616
DB_PASSWORD=
1717

18-
META_REPO=https://github.com/kalkayan/k8s.elections.meta.git
18+
META_REPO=https://github.com/elekto-dev/elekto.meta.test.git
1919
ELECTION_DIR=elections
2020
META_DEPLOYMENT=local
2121
META_PATH=meta

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ DB_PASSWORD=password
5959
Update the meta repository info
6060

6161
```bash
62-
META_REPO=https://github.com/elekto-io/elekto.meta.test.git
62+
META_REPO=https://github.com/elekto-dev/elekto.meta.test.git
6363
META_DEPLOYMENT=local
6464
META_PATH=meta
6565
META_BRANCH=main

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
db:
3-
image: postgres
3+
image: postgres:17
44
restart: always
55
environment:
66
POSTGRES_DB: elekto

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Documentation
22

3-
Primary elekto documentation is in [the Elekto Docs repo](https://github.com/elekto-io/docs) and not here. This directory contains some design documents from the early work on Elekto.
3+
Primary elekto documentation is in [the Elekto Docs repo](https://github.com/elekto-dev/docs) and not here. This directory contains some design documents from the early work on Elekto.

elekto/models/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def voters(self):
137137

138138
def showfields(self):
139139
# FIXME: show_candidate_fields could be None (as is the case in the name_the_app example meta), leading to an
140-
# error if showfields() is called. See: https://github.com/elekto-io/elekto/issues/98
140+
# error if showfields() is called. See: https://github.com/elekto-dev/elekto/issues/98
141141
return dict.fromkeys(self.election['show_candidate_fields'], '')
142142

143143
def candidates(self):

installation/deployment/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
app: elekto
1919
spec:
2020
containers:
21-
- image: ghcr.io/elekto-io/elekto:sha-83523b4
21+
- image: ghcr.io/elekto-dev/elekto:sha-83523b4
2222
imagePullPolicy: Always
2323
name: elekto
2424
ports:

scripts/validate-bios/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Adapted from the [Kubernetes community's verify-steering-election-tool.go](https
1717
No installation required! Run directly from GitHub:
1818

1919
```bash
20-
go run github.com/elekto-io/elekto/scripts/validate-bios@latest <election-path>
20+
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest <election-path>
2121
```
2222

2323
Or for local development, build from source:
@@ -35,7 +35,7 @@ This directory also includes a [sample Github workflow](go-test.yml), which can
3535

3636
```bash
3737
# Run directly from GitHub (recommended)
38-
go run github.com/elekto-io/elekto/scripts/validate-bios@latest /path/to/election
38+
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest /path/to/election
3939

4040
# Or for local development
4141
cd scripts/validate-bios
@@ -50,18 +50,18 @@ cd scripts/validate-bios
5050

5151
```bash
5252
# Enforce word limits
53-
go run github.com/elekto-io/elekto/scripts/validate-bios@latest \
53+
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest \
5454
--max-words=450 \
5555
--recommended-words=300 \
5656
/path/to/election
5757

5858
# Require specific markdown sections
59-
go run github.com/elekto-io/elekto/scripts/validate-bios@latest \
59+
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest \
6060
--required-sections="## About Me,## Platform,## Why I'm Running" \
6161
/path/to/election
6262

6363
# Combine all options
64-
go run github.com/elekto-io/elekto/scripts/validate-bios@latest \
64+
go run github.com/elekto-dev/elekto/scripts/validate-bios@latest \
6565
--max-words=450 \
6666
--recommended-words=300 \
6767
--required-sections="## About Me,## Platform" \

scripts/validate-bios/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/elekto-io/elekto/scripts/validate-bios
1+
module github.com/elekto-dev/elekto/scripts/validate-bios
22

33
go 1.22
44

3.23 MB
Binary file not shown.

security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ For information regarding the security and all other kinds of updates to this pr
66

77
* #elekto on [slack.cncf.io](https://slack.cncf.io)
88

9-
Or simply follow our [releases feed](https://github.com/elekto-io/elekto/releases).
9+
Or simply follow our [releases feed](https://github.com/elekto-dev/elekto/releases).
1010

1111
## Reporting a vulnerability
1212

0 commit comments

Comments
 (0)