Skip to content

Commit b81a1db

Browse files
committed
add website link
1 parent 9c9d41a commit b81a1db

File tree

5 files changed

+35
-9
lines changed

5 files changed

+35
-9
lines changed

CONTRIBUTORS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Contributors
2+
3+
- Muhtalip Dede
4+
- Harun Sokullu

Readme.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@
1313
[![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=muhtalipdede_avrasya&metric=duplicated_lines_density)](https://sonarcloud.io/summary/new_code?id=muhtalipdede_avrasya)
1414
[![CodeFactor](https://www.codefactor.io/repository/github/muhtalipdede/avrasya/badge)](https://www.codefactor.io/repository/github/muhtalipdede/avrasya)
1515
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/ff4e1c45beb34681b3b4f9946f369c2b)](https://app.codacy.com/gh/muhtalipdede/avrasya/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
16+
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=muhtalipdede_avrasya&metric=coverage)](https://sonarcloud.io/summary/new_code?id=muhtalipdede_avrasya)
1617

17-
<img src="./images/avrasya.png" alt="drawing" width="200"/>
18+
<img src="./images/avrasya.png" alt="drawing" width="200" style="display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.5);" alt="Avrasya Logo"/>
1819

20+
<p align="center">
21+
• <a href="https://avrasya.fly.dev">Official Website</a> •
22+
</p>
1923
Avrasya is a fast and unique Node.js web framework designed for building web applications and APIs. Avrasya stands out with its simple usage, performance, and extensibility.
2024

2125
## Features
@@ -26,7 +30,6 @@ Avrasya is a fast and unique Node.js web framework designed for building web app
2630
- Extensibility
2731
- Open-source and free
2832

29-
3033
## Getting Started
3134

3235
To get started with Avrasya, follow these steps:
@@ -99,21 +102,25 @@ See [Example](./examples/file-based-routes) for more details.
99102
To get started with Avrasya, follow these simple installation steps:
100103

101104
1. Clone the Repository:
105+
102106
```bash
103107
git clone https://github.com/muhtalipdede/avrasya.git
104108
```
105109

106110
2. Navigate to the Project Directory:
111+
107112
```bash
108113
cd avrasya
109114
```
110115

111116
3. Install Dependencies:
117+
112118
```bash
113119
npm install
114120
```
115121

116122
4. Start the Application:
123+
117124
```bash
118125
npm run start
119126
```
@@ -200,11 +207,14 @@ avrasya.router.get("/redirect", (context) => {
200207

201208
Thank you for considering contributing to this project! [CONTRIBUTING](/CONTRIBUTING.md)
202209

210+
## Contributors
211+
212+
Check out the list of contributors in the [CONTRIBUTORS](/CONTRIBUTORS.md) file.
213+
203214
## Issue Template
204215

205216
If you want to report an issue or request a new feature, please use the following template. [ISSUE_TEMPLATE](/.github/ISSUE_TEMPLATE.md)
206217

207-
208218
## License
209219

210220
This project is licensed under the MIT License. For more information, please refer to the [LICENSE](/LICENSE) File.

examples/prisma-mongodb/src/prisma/seed.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ main()
6464
console.error(e)
6565
process.exit(1)
6666
})
67-
.finally(async () => {
68-
await prisma.$disconnect()
67+
.finally(() => {
68+
prisma.$disconnect()
6969
})

images/avrasya.png

-278 Bytes
Loading

package.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "avrasya",
3-
"version": "1.0.24",
3+
"version": "1.0.25",
44
"description": "Avrasya is a fast and unique Node.js web framework designed for building web applications and APIs. Avrasya stands out with its simple usage, performance, and extensibility.",
55
"main": "dist/index.js",
66
"types": "src/index.d.ts",
@@ -33,10 +33,22 @@
3333
},
3434
"repository": {
3535
"type": "git",
36-
"url": "git+https://github.com/muhtalipdede/avrasya.git"
36+
"url": "git+https://github.com/ThinkThread/avrasya.git"
3737
},
3838
"bugs": {
39-
"url": "https://github.com/muhtalipdede/avrasya/issues"
39+
"url": "https://github.com/ThinkThread/avrasya/issues"
4040
},
41-
"homepage": "https://github.com/muhtalipdede/avrasya#readme"
41+
"homepage": "https://avrasya.fly.dev",
42+
"contributors": [
43+
{
44+
"name": "Muhtalip Dede",
45+
"github": "https://github.com/muhtalipdede",
46+
"twitter": "https://twitter.com/MuhtalipDede"
47+
},
48+
{
49+
"name": "Harun Sokullu",
50+
"github": "https://github.com/suphero",
51+
"twitter": "https://twitter.com/suphero"
52+
}
53+
]
4254
}

0 commit comments

Comments
 (0)