zamap / swcApi

Stop Web Crawlers update API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stop Web Crawlers Web Update API

A web API to enable updates the Stop Web Crawlers WordPress Plugin referer spam list

Database

We'll make use of MS SQL in a Docker container for the Database server

Run the SQL Server Docker image on Linux, Mac, or Windows

Download the docker image

       sudo docker pull microsoft/mssql-server-linux

run docker image - we've set up a standard SA password

       docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=P@ssw0rd12' -p 1433:1433 -d microsoft/mssql-server-linux

Upgrade docker

      sudo docker pull microsoft/mssql-server-linux:latest

Connect and Query

     sqlcmd -S localhost -U SA -P P@ssw0rd12 

Check Database exists

SELECT Name from sys.Databases;
GO

threenine logo

About

Stop Web Crawlers update API

License:Apache License 2.0


Languages

Language:C# 100.0%Language:Smalltalk 0.0%