Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 10 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,23 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Server",
"name": "Launch Package MAC",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/app/main.go",
"output": "${workspaceFolder}/stackyard"
},
{
"name": "Launch Server WIN",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}\\cmd\\app\\main.go",
"output": "${workspaceFolder}\\debug-main.exe"
},
{
"name": "Build & Launch (Dist)",
"name": "Build & Launch (Dist) WIN",
"type": "go",
"request": "launch",
"mode": "exec",
Expand Down
20 changes: 2 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<div align="center">
<img src=".assets/Stackyard_logo.PNG" alt="Stackyard" style="max-width: 500px;"/>
<img src=".assets/Stackyard_logo.PNG" alt="Stackyard" style="width: 50%; max-width: 400px;"/>
</div>
<div align="center">
<img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License"/>
Expand Down Expand Up @@ -57,22 +57,6 @@ go run cmd/app/main.go

**[Full Documentation](docs_wiki/)** - Comprehensive guides and references

### Core Documentation
- **[Configuration Guide](docs_wiki/CONFIGURATION_GUIDE.md)** - Complete configuration reference
- **[API Response Structure](docs_wiki/API_RESPONSE_STRUCTURE.md)** - Standard response formats
- **[Architecture Diagrams](docs_wiki/ARCHITECTURE_DIAGRAMS.md)** - System design and flow diagrams
- **[Service Implementation](docs_wiki/SERVICE_IMPLEMENTATION.md)** - How to add new services

### Infrastructure & Integration
- **[Integration Guide](docs_wiki/INTEGRATION_GUIDE.md)** - Redis, PostgreSQL, Kafka, MinIO setup
- **[Build Scripts](docs_wiki/BUILD_SCRIPTS.md)** - Production deployment automation
- **[Package Management](docs_wiki/CHANGE_PACKAGE_SCRIPTS.md)** - Module renaming tools

### Security & Features
- **[API Encryption](docs_wiki/ENCRYPTION_API.md)** - End-to-end encryption
- **[API Obfuscation](docs_wiki/API_OBFUSCATION.md)** - Data obfuscation mechanisms
- **[TUI Implementation](docs_wiki/TUI_IMPLEMENTATION.md)** - Terminal interface details

## Project Structure

```
Expand Down Expand Up @@ -111,4 +95,4 @@ Apache License Version 2.0: [LICENSE](LICENSE)

---

**Built with 🐸 using Go, Echo, Alpine.js, Tailwind CSS**
**Built using Go, Echo, Alpine.js, Tailwind CSS**
14 changes: 7 additions & 7 deletions cmd/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (
"net/url"
"os"
"os/signal"
"stackyard/config"
"stackyard/internal/monitoring"
"stackyard/internal/server"
"stackyard/pkg/logger"
"stackyard/pkg/tui"
"stackyard/pkg/utils"
"syscall"
"test-go/config"
"test-go/internal/monitoring"
"test-go/internal/server"
"test-go/pkg/logger"
"test-go/pkg/tui"
"test-go/pkg/utils"
"time"
)

Expand Down Expand Up @@ -193,7 +193,7 @@ func runWithTUI(cfg *config.Config, bannerText string, broadcaster *monitoring.L
liveTUI.AddLog("info", "Server starting on port "+cfg.Server.Port)
liveTUI.AddLog("info", "Environment: "+cfg.App.Env)

// Start Server in background
// Start Server in background - infrastructure will be initialized by the server
srv := server.New(cfg, l, broadcaster)
go func() {
liveTUI.AddLog("info", "HTTP server listening...")
Expand Down
72 changes: 0 additions & 72 deletions docs_wiki/API_OBFUSCATION.md

This file was deleted.

Loading
Loading