Skip to content

prebid/prebid-server

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
junping.zhao
May 7, 2020
43e0781 · May 7, 2020
Aug 9, 2019
May 7, 2020
Apr 6, 2020
Oct 24, 2019
Apr 29, 2020
Jan 23, 2020
Apr 14, 2020
Apr 22, 2020
Mar 30, 2020
Apr 26, 2020
Apr 6, 2020
May 3, 2017
Dec 11, 2019
Apr 29, 2020
Jan 9, 2020
Apr 15, 2020
May 28, 2017
Feb 5, 2020
Mar 30, 2020
Apr 15, 2020
Sep 14, 2018
Oct 8, 2019
Apr 6, 2020
Apr 26, 2020
Apr 6, 2020
Apr 29, 2020
Mar 18, 2020
Nov 20, 2019
Nov 21, 2019
Oct 18, 2017
Nov 21, 2019
Nov 20, 2019
Mar 25, 2020
Mar 25, 2020
Apr 6, 2020
Oct 16, 2019
Mar 18, 2020

Repository files navigation

Build Status Go Report Card

Prebid Server

Prebid Server is an open source implementation of Server-Side Header Bidding. It is managed by Prebid.org, and upholds the principles from the Prebid Code of Conduct.

This project does not support the same set of Bidders as Prebid.js, although there is overlap. The current set can be found in the adapters package. If you don't see the one you want, feel free to contribute it.

For more information, see:

Installation

First install Go 1.12 latest version. Note that prebid-server is using Go modules. If using Go version <1.13 and are inside GOPATH GO111MODULE needs to be set to GO111MODULE=on.

Download and prepare Prebid Server:

cd YOUR_DIRECTORY
git clone https://github.com/prebid/prebid-server src/github.com/prebid/prebid-server
cd src/github.com/prebid/prebid-server

Run the automated tests:

./validate.sh

Or just run the server locally:

go build .
./prebid-server

Load the landing page in your browser at http://localhost:8000/. For the full API reference, see docs/endpoints

Contributing

Want to add an adapter? Found a bug? Great! This project is in its infancy, and many things can be improved.

Report bugs, request features, and suggest improvements on Github.

Or better yet, open a pull request with the changes you'd like to see.