Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FOSDEM/volunteers
Volunteers management system for the FOSDEM conference
https://github.com/FOSDEM/volunteers
Last synced: 2 months ago
JSON representation
Volunteers management system for the FOSDEM conference
- Host: GitHub
- URL: https://github.com/FOSDEM/volunteers
- Owner: FOSDEM
- License: agpl-3.0
- Created: 2014-11-24T20:27:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-02-09T18:34:28.000Z (11 months ago)
- Last Synced: 2024-10-02T01:01:28.899Z (3 months ago)
- Language: JavaScript
- Size: 1.11 MB
- Stars: 19
- Watchers: 26
- Forks: 24
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-conferences - FOSDEM Volunteer Management
README
fosdem-volunteers
=================![build](https://github.com/Logout22/volunteers/actions/workflows/main.yml/badge.svg)
![codecov](https://codecov.io/gh/Logout22/volunteers/graph/badge.svg)Volunteers management system for conferences, originally written for FOSDEM.
Development setup
=================After cloning the repo do these steps:
1) Create a python environment using python3
eg: `virtualenv -p /usr/bin/python3 ./venv`
and activate this environment whenever working on the project (all other steps assume this)
```
source ./venv/bin/activate
```2) Install all dependencies in the environment:
```
pip install -r requirements-dev.txt
```3) create a `volunteer_mgmt/localsettings.py` file
you can copy volunteer_mgmt/localsettings_example.py as a starting point.
By default this uses a sqlite3 database.4) set up the initial database:
```
./manage.py migrate
```5) make sure that all static files are collected
```
./manage.py collectstatic
```6) create a superuser:
```
./manage.py createsuperuser
```7) run a development server:
```
./manage.py runserver
```
which should give you: http://localhost:8000/
8) in the admin interface http://localhost:8000/admin/ - make sure you create an edition before adding any other thingsProduction setup
================
See [the playbook instructions](deployment/playbook/README.md) for more information.