Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kerolloz/aktive
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.0
Choose a base ref
...
head repository: kerolloz/aktive
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 7 commits
  • 4 files changed
  • 1 contributor

Commits on Jun 1, 2024

  1. Fix Swagger info

    kerolloz committed Jun 1, 2024
    Copy the full SHA
    3b7e6b4 View commit details
  2. Update README.md

    kerolloz authored Jun 1, 2024
    Copy the full SHA
    f1cf946 View commit details
  3. Update README.md

    kerolloz authored Jun 1, 2024
    Copy the full SHA
    789b961 View commit details
  4. fix biome

    kerolloz committed Jun 1, 2024
    Copy the full SHA
    39554bf View commit details
  5. Copy the full SHA
    33075ef View commit details
  6. fix settings.json

    kerolloz committed Jun 1, 2024
    Copy the full SHA
    035a41f View commit details

Commits on Nov 14, 2024

  1. Update README.md

    kerolloz authored Nov 14, 2024
    Copy the full SHA
    05e5396 View commit details
Showing with 10 additions and 8 deletions.
  1. +4 −2 .vscode/settings.json
  2. +2 −2 README.md
  3. +1 −1 biome.json
  4. +3 −3 src/swagger.ts
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -3,8 +3,10 @@
"source.organizeImports.biome": "explicit",
"quickfix.biome": "explicit"
},
"[javascript]": {
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"cSpell.words": ["Logtail"]
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ Aktive is a simple web service. It returns a badge (or JSON) that shows your ran
## Docs

> [!NOTE]
> You can also check the Swagger [API documentation](https://kounter.kerolloz.dev/swagger) for more details.
> You can also check the Swagger [API documentation](https://aktive.kerolloz.dev/swagger) for more details.
### Endpoints

@@ -75,6 +75,6 @@ Redirects to this repository.
$ curl https://aktive.kerolloz.dev/rank/egypt/kerolloz

{
"rank": "108th"
"rank": "109th"
}
```
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"formatter": {
"enabled": true,
"formatWithErrors": false,
6 changes: 3 additions & 3 deletions src/swagger.ts
Original file line number Diff line number Diff line change
@@ -7,12 +7,12 @@ export const registerSwagger = (app: FastifyInstance) => {
app.register(fastifySwagger, {
openapi: {
info: {
title: 'Kounter',
title: 'Aktive',
description:
'Kounter is a simple counter service that can be used in a variety of ways.',
'Aktive is a simple web service. It returns a badge (or JSON) that shows your rank among other GitHub users from your country according to your GitHub contributions.',
contact: {
name: 'Kerollos Magdy',
url: 'https://kounter.kerolloz.dev',
url: 'https://aktive.kerolloz.dev',
email: 'kerolloz@yahoo.com',
},
version: '1.0.0',