An open API service indexing awesome lists of open source software.

https://github.com/schmichael/django-nomadrepo

Demo app
https://github.com/schmichael/django-nomadrepo

Last synced: about 1 year ago
JSON representation

Demo app

Awesome Lists containing this project

README

          

# Nomad Job Repo in Django

Just a demo app.

See `nomadrepo.nomad` for the Nomad jobspec.

If you have an AWS account, run `terraform` in the `terraform/env/us-east`
directory.

## Local Development

```
docker run --name nomadrepo -e POSTGRES_PASSWORD=nomadrepo9000 -p 5432:5432 -d postgres:13
PGPASSWORD=nomadrepo9000 psql -h localhost -U postgres -c 'CREATE DATABASE nomadrepo'

# Assuming a local checkout of this repo in a venv
cd nomadrepo
python manage.py migrate
python manage.py runserver
```