Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shackspace/shackbureau
the one and only (yet another) shack member managment
https://github.com/shackspace/shackbureau
Last synced: 5 days ago
JSON representation
the one and only (yet another) shack member managment
- Host: GitHub
- URL: https://github.com/shackspace/shackbureau
- Owner: shackspace
- Archived: true
- Created: 2015-07-18T11:24:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-18T21:57:54.000Z (about 6 years ago)
- Last Synced: 2024-08-02T12:47:22.766Z (3 months ago)
- Language: Python
- Size: 327 KB
- Stars: 7
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - shackspace/shackbureau - the one and only (yet another) shack member managment (others)
README
# shackbureau
shackbureau was the shackspace membership management software. It was retired in favor of
[byro](https://github.com/byro/byro).[![Build Status](https://travis-ci.org/shackspace/shackbureau.svg?branch=master)](https://travis-ci.org/shackspace/shackbureau)
## howto run
### docker-compose
#### Install docker-compose
sudo pip install -U docker-compose#### Make an alias
alias dc=docker-compose### Build the container
dc build#### db reset
dc run --rm web reset_db#### (re-)create database structure
dc run --rm web migrate#### createsuperuser
dc run --rm web createsuperuser### start the containter
dc up -d
And navigate your browser to `http://localhost:8000/admin/`## Importing old data
Export the CSV from LibreOffice, delimiter `;` quote-char `"` and move it to the root of this git repo.
Run `dc run --rm web shell_plus `
from usermanagement.utils import import_old_shit
import_old_shit('/opt/code/Mitglieder.csv')## view logs
dc logs [web|db|data]## Testing
### run tests
docker exec -ti shackbureau_web_1 py.test