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

https://github.com/jream/basic-events

Small Django App
https://github.com/jream/basic-events

Last synced: about 1 month ago
JSON representation

Small Django App

Awesome Lists containing this project

README

          

# Basic Events

Simple Event App in Django.

# Status

This is just started :)

# Install

```
pip install -r requirements/development.txt
./manage.py migrate

./manage.py runserver
or
./manage.py runserver_plus
```

## Docker
To build a fresh image from the Dockerfile:

```
docker build .
```

See whats running
```
docker ps
```

## Testing
This doesnt make FK relationships or PK's, dont use it.

```
./manage.py seed events --number=40
```

This runs the Unit Tester Suite
```
$ py.test
```

## Test Coverage
This triggers `Makefile` which triggers `bin/coverage.sh`
```
make test
```