feat: indie status page MVP -- FastAPI + SQLite
- 8 DB models (services, incidents, monitors, subscribers, etc.) - Full CRUD API for services, incidents, monitors - Public status page with live data - Incident detail page with timeline - API key authentication - Uptime monitoring scheduler - 13 tests passing - TECHNICAL_DESIGN.md with full spec
This commit is contained in:
commit
902133edd3
4655 changed files with 1342691 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef BASE64_CONFIG_H
|
||||
#define BASE64_CONFIG_H
|
||||
|
||||
#if !defined(__APPLE__) && ((defined(__x86_64__) && defined(__LP64__)) || defined(_M_X64))
|
||||
#define HAVE_SSSE3 1
|
||||
#define HAVE_SSE41 1
|
||||
#define HAVE_SSE42 1
|
||||
#define HAVE_AVX 1
|
||||
#define HAVE_AVX2 1
|
||||
#define HAVE_AVX512 0
|
||||
#elif (defined(__APPLE__) && defined(__aarch64__))
|
||||
#define HAVE_NEON64 1
|
||||
#elif (defined(__wasm__) && defined(__wasm_simd128__))
|
||||
#include "emscripten/version.h"
|
||||
#if __EMSCRIPTEN_major__ == 3
|
||||
#define HAVE_NEON32 1
|
||||
#elif __EMSCRIPTEN_major__ > 3
|
||||
#define HAVE_NEON64 1
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif // BASE64_CONFIG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue