├── .github └── workflows │ ├── contributors.yml │ ├── cross-compile.yml │ └── docker-build-push.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── diesel.toml ├── migrations ├── .gitkeep ├── 2021-11-30-135749_create_statistics_table │ ├── down.sql │ └── up.sql ├── 2022-02-10-024102_statistics_v2 │ ├── down.sql │ └── up.sql ├── 2023-12-28-131316_statistics_v3 │ ├── down.sql │ └── up.sql └── 2023-12-28-150535_statistics_v4 │ ├── down.sql │ └── up.sql ├── resources └── membership.json ├── src ├── app_model.rs ├── app_router.rs ├── boring_face.rs ├── build.rs ├── lib.rs ├── main.rs ├── membership_model.rs ├── schema.rs └── statistics_model.rs └── templates ├── base.html ├── index.html ├── join_us.html └── rank.html /.github/workflows/contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/.github/workflows/contributors.yml -------------------------------------------------------------------------------- /.github/workflows/cross-compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/.github/workflows/cross-compile.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/.github/workflows/docker-build-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /target 3 | .env 4 | /data -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/README.md -------------------------------------------------------------------------------- /diesel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/diesel.toml -------------------------------------------------------------------------------- /migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/2021-11-30-135749_create_statistics_table/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE `statistics`; -------------------------------------------------------------------------------- /migrations/2021-11-30-135749_create_statistics_table/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/migrations/2021-11-30-135749_create_statistics_table/up.sql -------------------------------------------------------------------------------- /migrations/2022-02-10-024102_statistics_v2/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/migrations/2022-02-10-024102_statistics_v2/down.sql -------------------------------------------------------------------------------- /migrations/2022-02-10-024102_statistics_v2/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/migrations/2022-02-10-024102_statistics_v2/up.sql -------------------------------------------------------------------------------- /migrations/2023-12-28-131316_statistics_v3/down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE 2 | `statistics` DROP COLUMN latest_referrered_at; -------------------------------------------------------------------------------- /migrations/2023-12-28-131316_statistics_v3/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/migrations/2023-12-28-131316_statistics_v3/up.sql -------------------------------------------------------------------------------- /migrations/2023-12-28-150535_statistics_v4/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/migrations/2023-12-28-150535_statistics_v4/down.sql -------------------------------------------------------------------------------- /migrations/2023-12-28-150535_statistics_v4/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/migrations/2023-12-28-150535_statistics_v4/up.sql -------------------------------------------------------------------------------- /resources/membership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/resources/membership.json -------------------------------------------------------------------------------- /src/app_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/app_model.rs -------------------------------------------------------------------------------- /src/app_router.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/app_router.rs -------------------------------------------------------------------------------- /src/boring_face.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/boring_face.rs -------------------------------------------------------------------------------- /src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/build.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/membership_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/membership_model.rs -------------------------------------------------------------------------------- /src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/schema.rs -------------------------------------------------------------------------------- /src/statistics_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/src/statistics_model.rs -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/join_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/templates/join_us.html -------------------------------------------------------------------------------- /templates/rank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantoblanco/boringbay/HEAD/templates/rank.html --------------------------------------------------------------------------------