A simple gift registry web service. Thematically designed for a baby shower, but easily adaptable for any purpose.
- Built with a Django backend and Tailwind frontend
- Manage items with the Django admin interface
- Links to items automatically fetch images and descriptions using opengraph
- One-click to claim/mark items as bought
- Set limits on number of items and moves them down the list as they are claimed
- Prompts users for an email address to send them a link that allows them to return and manage items
- Webhook confirms email sent
- Dockerfiles for asset complilation and deployment
- Main app served with gunicorn
- Static files served with nginx
- Traefik handles TLS and incoming requests
- Install pip requirements
pip install -r requirements.txt - Install
nodeandnpmfor Tailwind - Perform database migration
python manage.py migrate --settings=registry.settings.dev - Launch Tailwind JIT compilier
python manage.py tailwind --settings=registry.settings.dev start - Launch Django development server
python manage.py runserver --settings=registry.settings.dev
- Adjust production configuration in
registry/settings/prod.py - Adjust Traefik configuration in
docker-compose.yml - Build assets and app container
docker-compose build - Perform database migration
python manage.py migrate --settings=registry.settings.prod - Create admin account
python manage.py createsuperuser --settings=registry.settings.prod - Launch service directly
docker-compose upor push containers to server and deploy with Docker-swarm



