Skip to content

Commit

Permalink
Clean
Browse files Browse the repository at this point in the history
  • Loading branch information
unkn0wn107 committed Aug 29, 2024
1 parent 4196706 commit 7c835a8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 19 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# webserv
Simple http/1.1 (bis) server implemented in c++ for 42 school cursus
C++ epoll-based multi-threaded http/1.1 server with cgi and caching

## Option 1 : Local run
```
make
./webserv local.conf
```

## Option 2 : Docker run
`make run`

## RFC : [Résumé des différents documents de la RFC](doc/RFC.md)

Expand All @@ -16,3 +25,6 @@ Simple http/1.1 (bis) server implemented in c++ for 42 school cursus
3. Usage - manual
- Format all files : `find . -name "*.cpp" -o -name "*.h" -o -name "*.hpp" -o -name "*.tpp" | xargs clang-format -i`
- Static analysis : `find . -name "*.cpp" -o -name "*.h" -o -name "*.hpp" -o -name "*.tpp" | xargs clang-tidy -config=.clang-tidy`


42Lyon
8 changes: 0 additions & 8 deletions TODO

This file was deleted.

1 change: 0 additions & 1 deletion html-website-templates
Submodule html-website-templates deleted from e4373e
5 changes: 0 additions & 5 deletions siegeurls.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/Worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ void Worker::_acceptNewConnection(int fd) {
close(new_socket);
delete handler;
delete eventData;
// continue;
}
}
}
Expand Down

0 comments on commit 7c835a8

Please sign in to comment.