Template
1
0

Compare commits

...

5 Commits

Author SHA1 Message Date
cat
7d6163b3dd removed cache 2025-07-02 19:12:17 +03:00
cat
336b8311cd Fixed README.md 2025-07-02 19:11:47 +03:00
cat
b07711341f Resolving conflict 2025-07-02 19:11:06 +03:00
cat
063a4f3cf9 rebase hell is over + some tweaks to README.md 2025-07-02 15:37:07 +03:00
cat
9f5abcafa1 Start of the body processing 2025-07-02 15:30:31 +03:00

View File

@@ -1,6 +1,6 @@
# Web Base for C++ # TNC File Hoster
A good starting point for web development on C++. Do implement security stuff. The Night Club's very own basic image hosting web frontend.
# Building # Building
@@ -13,3 +13,13 @@ A good starting point for web development on C++. Do implement security stuff.
4. lastly run ``$ make`` 4. lastly run ``$ make``
You can run ``./Webserver`` to run the server fully. You can run ``./Webserver`` to run the server fully.
# Coing Guidelines
- In most of my projects I have less header(h/hpp) files than implementation files(c/cpp). This is very much intentional. I implement parts of a header file for ease of reading. You are expected to NOT make 1 header per 1 implementation file!!!
- When doing ``#include`` if the same include is used more than once in different implementation files that share a header file. Move the ``#include`` to the header file instead of having two of the same includes.
- Codebase must adhere to DRY and KISS (DRY KISS) principles!