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
- Host: GitHub
- URL: https://github.com/jream/basic-events
- Owner: JREAM
- Created: 2017-01-29T08:23:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-18T04:11:42.000Z (about 3 years ago)
- Last Synced: 2025-03-02T16:48:44.459Z (over 1 year ago)
- Language: Python
- Size: 1.94 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
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
```