KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
verifiedpixel
★ 32
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
MiBand-Utility
:
Tweak to forward iOS notifications to Xiaomi MiBand.
coding.github.io
:
:earth_asia:最:+1:的云端开发平台 > https://coding.github.io
HttpHelper
:
a simple c# http client use HttpWebRequest
gnome-shell-extensions-gravatar
:
A GNOME Shell extension to synchronize your user icon with Gravatar.
postgis-training
:
Postgis Eğitimi - Postgis Training in Turkish
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
verifiedpixel
?
Download (.md)
# Verifiedpixel *Version 0.1* Documentation (Coming soon) • ## Requirements * node.js * python * mongodb * elasticsearch * redis ## Build the server Prerequisites/full-installation for Ubuntu Trusty Tahr: https://github.com/verifiedpixel/verifiedpixel/blob/master/server/INSTALL.md For the sake of simplification we're going to say that you're in your download location. ```bash $cd server $virtualenv -p python3 env $source env/bin/activate (env)$pip install -r requirements.txt ``` You will need your API keys to hand, Tineye, Izitru, and Google Reverse Image Search. We advise you bundle them into a file and just hit them all at once but here is what you will need: ```bash export TINEYE_PUBLIC_KEY="<API PUBLIC KEY>" export TINEYE_SECRET_KEY="<API SECRET KEY>" export IZITRU_PRIVATE_KEY="<IZITRU PRIVATE KEY>" export IZITRU_ACTIVATION_KEY="<IZITRU ACTIVATION KEY>" export GRIS_API_KEY="<GRIS API KEY>" export GRIS_API_CX="<GRIS API CX>" ``` If you've made your keys into a script into an executable (chmod a+x) execute it with: ```bash (env)$source yourscriptname ``` ## Build the client Prerequisites/full-installation for Ubuntu Trusty Tahr: https://github.com/verifiedpixel/verifiedpixel/blob/master/client/INSTALL.md Open a new terminal pane. ```bash $cd client $sudo npm install $bower install $grunt server ``` Start your redis, elasticearch, and mongodb services. Start the application. ```bash (env)$honcho start ```