https://github.com/epicstep/txt-dns-hackathon
https://github.com/epicstep/txt-dns-hackathon
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/epicstep/txt-dns-hackathon
- Owner: EpicStep
- Created: 2021-09-19T06:51:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-19T07:27:13.000Z (almost 5 years ago)
- Last Synced: 2025-01-23T21:31:38.851Z (over 1 year ago)
- Language: C++
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# txt-dns (задание №5)
## Installing
You can install .deb package on your debian-based machine:
```bash
wget https://github.com/EpicStep/txt-dns-hackathon/releases/download/1.0/txt_dns-0.1.1-Linux.deb
dpkg -i txt_dns-0.1.1-Linux.deb
```
After this you can use this util:
```bash
txt_dns
```
## Build
You must install git, cmake, g++, libssl-dev (```sudo apt install git cmake g++ libssl-dev```).
```bash
git clone https://github.com/EpicStep/txt-dns-hackathon.git
cd txt-dns-hackathon
cmake .
cmake --build .
```
Also, you can generate .deb package:
```bash
cpack -G DEB
```
## Run
```bash
./txt_dns
```
## Run self-hosted back-end
This application has simple [back-end application](https://github.com/EpicStep/txt-dns-backend).