mirror of
https://github.com/danbulant/facebug
synced 2026-05-19 04:18:44 +00:00
748 B
748 B
Facebug
Facebug is a simple web application that allows you to search for people by their first and last name.
Build instructions
# build an image
docker build -t haxagon/facebug .
# push an image to private registry
docker push haxagon/facebug
Development
# install dependencies
npm install
# build
npm run build
# start local mysql database server
docker run -d -p 3306:3306 --name mysql-docker-container -e MYSQL_ROOT_PASSWORD=facebug -e MYSQL_DATABASE=facebug -e MYSQL_USER=facebug -e MYSQL_PASSWORD=facebug mysql/mysql-server:latest
# start the application
./node_modules/nodemon/bin/nodemon.js lib/app.js
API
GET /search
curl 'localhost:3000/search?firstName=Brad&lastName=Pitt'