1
0
forked from cat/WebBase

Compare commits

...

3 Commits

Author SHA1 Message Date
cat
f5f1969acd Merge remote-tracking branch 'refs/remotes/origin/main' 2025-07-02 15:31:10 +03:00
cat
14394f1c9f Start of the body processing 2025-07-02 15:14:16 +03:00
309ba08e34 Breaking it off from File Hosting 2025-07-01 19:05:20 +02:00

View File

@@ -1,14 +1,6 @@
# TNC File Hosting
# Web Base for C++
The Night Club's very own basic image hosting web frontend.
# 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!
A good starting point for web development on C++. Do implement security stuff.
# Building