Skip to content

Commit 872d5d5

Browse files
Merge pull request #8 from webexpress-framework/develop
0.0.9-alpha
2 parents 4ccad28 + e51e00c commit 872d5d5

13 files changed

Lines changed: 830 additions & 430 deletions

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# Code of Conduct
44
At `WebExpress`, we believe in fostering an open and welcoming community. Our goal is to create a collaborative and inclusive environment where everyone feels respected and valued. This Code of Conduct outlines our expectations for participant behavior and the consequences for unacceptable behavior. We invite all those who participate in our project to help us create safe and positive experiences for everyone.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress.Doc/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# Contributing to WebExpress
44
First of all, thank you for considering contributing to `WebExpress`! We appreciate your support and efforts in

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 René Schwarzer
3+
Copyright (c) 2025 René Schwarzer
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
![WebExpress](https://raw.githubusercontent.com/ReneSchwarzer/WebExpress/main/assets/banner.png)
1+
![WebExpress-Framework](https://raw.githubusercontent.com/webexpress-framework/.github/main/docs/assets/img/banner.png)
22

33
# WebExpress
4-
WebExpress is a lightweight web server optimized for use in low-performance environments (e.g. Rasperry PI). By providing
5-
a powerful plugin system and a comprehensive API, web applications can be easily and quickly integrated into a .net
6-
language (e.g. C#). Some advantages of WebExpress are:
4+
WebExpress is a lightweight web server optimized for use in low-performance environments (e.g. Rasperry PI). By providing a powerful plugin system and a comprehensive API, web applications can be easily and quickly integrated into a .net language (e.g. C#). Some advantages of WebExpress are:
75

86
- It is easy to use.
97
- It offers a variety of features and tools that can help you build and manage your website.
@@ -12,38 +10,38 @@ language (e.g. C#). Some advantages of WebExpress are:
1210

1311
The WebExpress family includes the following projects:
1412

15-
- [WebExpress](https://github.com/ReneSchwarzer/WebExpress#readme) - The web server for WebExpress applications and the documentation.
16-
- [WebExpress.WebCore](https://github.com/ReneSchwarzer/WebExpress.WebCore#readme) - The core for WebExpress applications.
17-
- [WebExpress.WebUI](https://github.com/ReneSchwarzer/WebExpress.WebUI#readme) - Common templates and controls for WebExpress applications.
18-
- [WebExpress.WebIndex](https://github.com/ReneSchwarzer/WebExpress.WebIndex#readme) - Reverse index for WebExpress applications.
19-
- [WebExpress.WebApp](https://github.com/ReneSchwarzer/WebExpress.WebApp#readme) - Business application template for WebExpress applications.
13+
- [WebExpress](https://github.com/webexpress-framework/WebExpress#readme) - The web server for WebExpress applications and the documentation.
14+
- [WebExpress.WebCore](https://github.com/webexpress-framework/WebExpress.WebCore#readme) - The core for WebExpress applications.
15+
- [WebExpress.WebUI](https://github.com/webexpress-framework/WebExpress.WebUI#readme) - Common templates and controls for WebExpress applications.
16+
- [WebExpress.WebIndex](https://github.com/webexpress-framework/WebExpress.WebIndex#readme) - Reverse index for WebExpress applications.
17+
- [WebExpress.WebApp](https://github.com/webexpress-framework/WebExpress.WebApp#readme) - Business application template for WebExpress applications.
2018

2119
WebExpress is part of the WebExpress family. The project provides a web server for WebExpress applications.
2220

2321
# Libraries used
2422
- https://github.com/dotnet/core (MIT)
2523
- https://getbootstrap.com/ (MIT)
2624
- https://www.chartjs.org (MIT)
27-
- https://jquery.com/ (MIT)
28-
- https://summernote.org/ (MIT)
25+
- https://fontawesome.com/ (CC BY 4.0 and MIT)
2926
- https://popper.js.org/ (MIT)
30-
- https://github.com/kurtobando/simple-tags (MIT)
31-
- https://github.com/uxsolutions/bootstrap-datepicker (Apache 2.0)
32-
- https://github.com/xoofx/markdig (BSD-2-Clause license)
3327

3428
# Download
35-
The current binaries are available for download [here](https://github.com/ReneSchwarzer/WebExpress/releases).
29+
The current binaries are available for download [here](https://github.com/webexpress-framework/WebExpress/releases).
3630

3731
# Start
3832
To get started with WebExpress, use the following links and tutorials.
3933

40-
- [installation guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/installation_guide.md)
41-
- [development guide](https://github.com/ReneSchwarzer/WebExpress/blob/main/doc/development_guide.md)
42-
- [WebExpress.WebCore API Documentation](https://reneschwarzer.github.io/WebExpress.WebCore/)
43-
- [WebExpress.WebUI API Documentation](https://reneschwarzer.github.io/WebExpress.WebUI/)
34+
- [installation guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/installation_guide.md)
35+
- [development guide](https://github.com/webexpress-framework/WebExpress/blob/main/doc/development_guide.md)
36+
- [WebExpress.WebCore API Documentation](https://webexpress-framework.github.io/WebExpress.WebCore/)
37+
- [WebExpress.WebUI API Documentation](https://webexpress-framework.github.io/WebExpress.WebUI/)
4438

4539
## Tutorials
46-
- [HelloWorld](https://github.com/ReneSchwarzer/WebExpress.Tutorial.HelloWorld#readme)
40+
Begin with our basic tutorial:
41+
- [HelloWorld](https://github.com/webexpress-framework/WebExpress.Tutorial.HelloWorld#readme)
42+
- [WebUI](https://github.com/webexpress-framework/WebExpress.Tutorial.WebUI#readme)
43+
- [WebApp](https://github.com/webexpress-framework/WebExpress.Tutorial.WebApp#readme)
44+
- [WebIndex](https://github.com/webexpress-framework/WebExpress.Tutorial.WebIndex#readme)
4745

4846
# Tags
4947
#WebExpress #WebServer

WebExpress.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package>
33
<id>WebExpress</id>
4-
<version>0.0.8-alpha</version>
4+
<version>0.0.9-alpha</version>
55
<title>WebExpress</title>
66
<authors>rene_schwarzer@hotmail.de</authors>
77
<license>MIT</license>

0 commit comments

Comments
 (0)