How to Write a node application to run openai chatgtp inside a docker container

Here’s an example of how you might create a Node.js application that runs OpenAI’s GPT-3 model inside a Docker container: First, you’ll need to create a new Node.js project and install the necessary packages. In the project’s root directory, run […]

Tags: , , , ,

Gitea how to install

1) Pre-Requisite # Install Mariadb yum -y install mariadb mysql -u root -p CREATE DATABASE gitea; CREATE USER ‘gitea’@’localhost’; SET PASSWORD FOR ‘gitea’@’localhost’ = PASSWORD(‘NEW_gitea’); grant all privileges on gitea.* to ‘gitea’@’localhost’; # Install go wget “https://dl.google.com/go/go1.10.linux-amd64.tar.gz” mv go1.10.linux-amd64.tar.gz /usr/local/ […]

Tags: , , , , , ,

How to install gogs on centos7

# INSTALL GO and Gogs (github opensource server) on CENTOS 7 wget “https://dl.google.com/go/go1.10.linux-amd64.tar.gz” mv go1.10.linux-amd64.tar.gz /usr/local/ cd /usr/local/ tar -zxvf go1.10.linux-amd64.tar.gz ln -s /usr/local/go/bin/go /usr/local/bin/go ln -s /usr/local/go/bin/godoc /usr/local/bin/godoc ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt adduser -c “Gogs” git su – git […]

Tags: , , , , , ,

URBACKUP CENTOS 7 HOW TO INSTALL

URBACKUP CENTOS 7 HOW TO INSTALL Centos 7 x64bit urbackup-server-2.0.36 Requirements: yum install autoconf automake binutils bison flex gcc gcc-c++ gettext libtool make patch pkgconfig redhat-rpm-config rpm-build rpm-sign yum install zlib-devel.x86_64 zlib.x86_64 libcurl-devel.x86_64 cryptopp-devel.x86_64 wget “https://hndl.urbackup.org/Server/2.0.36/urbackup-server-2.0.36.tar.gz” tar -zxvf urbackup-server-2.0.36.tar.gz cd […]

Tags: , , , , , ,