Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
38f25d8
Refines Doxygen style guide for stricter consistency
To0nsa Aug 9, 2025
dcf5d4b
Adds documentation and refines configuration handling
To0nsa Aug 9, 2025
5169811
Merge remote-tracking branch 'origin/dev' into to0nsa-feature/documen…
To0nsa Aug 11, 2025
a4702d0
Fix Doxyfile issues and enhance documentation configuration
To0nsa Aug 11, 2025
3b9372a
Add a header containing doxygen groups declaration.
To0nsa Aug 13, 2025
a501aca
Change doxygen group from config to core for Server class.
To0nsa Aug 13, 2025
837bee1
add @copydoc to retrieve document from webserv.cpp
To0nsa Aug 13, 2025
9b5d514
remove unused doxygen group for utilities and helpers
To0nsa Aug 13, 2025
ccb0677
Refactor documentation for server selection utilities in core module
To0nsa Aug 13, 2025
cecf836
Update author information and improve documentation in webserv.hpp an…
To0nsa Aug 13, 2025
0b5a3f0
Update documentation in errorUtils and filesystemUtils for clarity an…
To0nsa Aug 13, 2025
fa7b1ed
Refines Doxygen configuration and server code structure
To0nsa Aug 14, 2025
65b6e1e
Improves documentation and removes legacy ASAN ignore file
To0nsa Aug 15, 2025
0a66803
Enhance documentation for Location and Server components, update Doxy…
To0nsa Aug 15, 2025
7016353
Enhances configuration parsing and validation with detailed documenta…
To0nsa Aug 18, 2025
8e4a7bf
Remove outdated CONTRIBUTING guidelines and enhance README with confi…
To0nsa Aug 18, 2025
64ae82a
Refines Doxygen setup and removes obsolete docs
To0nsa Aug 18, 2025
76bee0e
Merge remote-tracking branch 'origin/dev' into to0nsa-feature/documen…
To0nsa Aug 18, 2025
333cbe0
Refactors Makefile structure and streamlines build process
To0nsa Aug 18, 2025
448d2b2
Update project structure and remove unused dependencies
To0nsa Aug 18, 2025
07cb396
Improves README with server architecture details
To0nsa Aug 18, 2025
ccb9d5d
Enhances SocketManager with detailed documentation
To0nsa Aug 18, 2025
bbfbbaa
Fix typo in Doxygen group name and improve code organization
To0nsa Aug 18, 2025
b3537f6
Adds documentation for SocketManager and networking flow
To0nsa Aug 18, 2025
112718b
Enhance HTTP documentation
To0nsa Aug 19, 2025
9007e70
Enhances HTTP request routing with detailed documentation
To0nsa Aug 19, 2025
1c9ef04
Enhances HTTP documentation
To0nsa Aug 19, 2025
44ed4a5
Improves documentation.
To0nsa Aug 19, 2025
752bba4
Adds Makefile for project build configuration
To0nsa Aug 19, 2025
aa0cf0a
Merge pull request #40 from To0nsa/dev
RychkovIurii Aug 19, 2025
f80587b
Update makefile name
To0nsa Aug 19, 2025
31f1c68
Remove step to clean previous HTML output in Doxygen workflow
To0nsa Aug 19, 2025
4207d0a
Remove Makefile entry from .gitignore and add Makefile for project bu…
To0nsa Aug 19, 2025
8b4c9c6
Fixed compilation error.
RychkovIurii Aug 19, 2025
de848b6
Switched from requirements to requirements-test. Nicolas removed requ…
RychkovIurii Aug 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .asanignore

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y python3 python3-pip
pip3 install -r requirements.txt || true
pip3 install -r requirements-test.txt || true

- name: Build webserv
run: make
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ compile_commands.json
__pycache__/
*.pyc
*.pyo
.pytest_cache/

# --- Virtual environments ---
.venv/
Expand All @@ -51,3 +52,8 @@ Thumbs.db
test_webserv/**/__pycache__/
test_webserv/**/*.pyc
test_webserv/**/*.pyo

# --- Doxygen docs ---

/docs/html/
/docs/doxygen.warnings
Loading