Atlas-X is a multi-language project that integrates backend services written in C++ and Go, a frontend application using HTML, and data analysis capabilities in Python. This project aims to provide a comprehensive solution for data processing and user interaction.
atlas-x
├── src
│ ├── backend
│ │ ├── cpp
│ │ │ ├── main.cpp
│ │ │ └── CMakeLists.txt
│ │ └── go
│ │ ├── main.go
│ │ └── server.go
│ ├── frontend
│ │ └── index.html
│ └── python
│ ├── analysis.py
│ └── model.py
├── tests
│ ├── cpp
│ ├── go
│ └── python
├── config
│ └── settings.json
├── README.md
└── LICENSE
-
C++: Navigate to the
src/backend/cppdirectory and use CMake to build the C++ application.mkdir build cd build cmake .. make -
Go: Navigate to the
src/backend/godirectory and run the Go application.go run main.go
Open the src/frontend/index.html file in a web browser to view the user interface.
Run the Python scripts located in the src/python directory for data analysis and AI model training.
Unit tests for each component can be found in the tests directory. Use the appropriate testing framework for each language to run the tests.
This project is licensed under the MIT License. See the LICENSE file for more details.
