Refactor and enhance Archipelago setup and API
- Revamped GETTING_STARTED.md for clarity and completeness, detailing the Docker development environment and installation steps. - Updated Cargo.lock and Cargo.toml to replace deprecated dependencies and add new ones, including hyper-ws-listener and env_logger. - Improved WebSocket handling in the API to support upgrades and error management. - Enhanced Neode UI scripts to manage Docker containers during development. - Adjusted dummy app configurations for accurate LAN addresses. - Sorted app entries in the UI for better organization and accessibility.
This commit is contained in:
@@ -96,6 +96,18 @@ else
|
||||
fi
|
||||
echo ""
|
||||
|
||||
# Start Docker apps
|
||||
if /usr/local/bin/docker ps > /dev/null 2>&1; then
|
||||
echo -e "${BLUE}🏝️ Starting Archipelago Docker apps...${NC}"
|
||||
cd ..
|
||||
./start-docker-apps.sh
|
||||
cd neode-ui
|
||||
echo ""
|
||||
else
|
||||
echo -e "${YELLOW}⚠️ Skipping Docker apps (Docker not available)${NC}"
|
||||
echo ""
|
||||
fi
|
||||
|
||||
# Check if node_modules exists
|
||||
if [ ! -d "node_modules" ]; then
|
||||
echo -e "${YELLOW}⚠️ node_modules not found. Running npm install...${NC}"
|
||||
|
||||
Reference in New Issue
Block a user