Skip to content

North101/netrunnerdb-api-server

 
 

Repository files navigation

netrunnerdb-api-server

API Server for NetrunnerDB

Status & Timeline

This is experimental for now, but will be the seed for v2 of NRDB.

Public API functionality will be implemented first as v3 of the existing NRDB API.

Dependencies

This depends on the data from https://github.com/NetrunnerDB/netrunner-cards-json

For local dev with docker

echo "RAILS_ENV=development" > .env
# This will not be needed if you have already created this network.
docker network create null_signal
docker compose build
cp config/database.example.yml config/database.yml
docker compose up -d db
# Wait until docker compose logs db | tail shows 'database system is ready to accept connections'
docker compose run nrdb_api_server rake db:reset
docker compose up -d
# Import the card data from the netrunner-cards-json repo
docker compose exec nrdb_api_server rails cards:import

To run tests in your docker container, you will need to override the environment, like so:

docker compose exec -e RAILS_ENV=test nrdb_api_server rails test

Getting Started

Once your server is running you can hit the api! ex. http://localhost:3000/api/v3/public/cards/sure_gamble

You can find the full list of routes here: http://localhost:3000/rails/info/routes

API Documentation will be available at http://localhost:3000/api/docs/.

To re-generate API documentation (in test environment to ensure minimal changes) run:

docker compose run -e RAILS_ENV=test nrdb_api_server bundle exec rake docs:generate

About

API Server for NetrunnerDB

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 99.6%
  • Other 0.4%