Skip to content

Commit

Permalink
Merge branch 'master' into PyAr#137-pending-sponsoring
Browse files Browse the repository at this point in the history
  • Loading branch information
samsagaz committed Mar 2, 2020
2 parents 3611299 + 2d0ecd2 commit 565f6be
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Aplicación web para la gestión de membresías de la Asociación Civil [![Build Status](https://travis-ci.org/PyAr/asoc_members.svg?branch=master)](https://travis-ci.org/PyAr/asoc_members)

## System dependencies to manage/use the project

You will need Docker in your system, here are [proper instructions to install it](https://docs.docker.com/get-docker/)

After that, you just need:

- Python 3
- Docker compose

Example to install in Debian/Ubuntu:

sudo apt install python3 docker docker-compose


## Development

These are the normal commands used for development:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
web:
build: .
ports:
- "8000:8000"
- "8127:8127"
volumes:
- .:/code
command: "tail -f /dev/null"
Expand Down
29 changes: 29 additions & 0 deletions website/events/migrations/0010_auto_20200302_1213.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Generated by Django 2.0.12 on 2020-03-02 12:13

from django.db import migrations, models
import events.models


class Migration(migrations.Migration):

dependencies = [
('events', '0009_expense_cancelled_date'),
]

operations = [
migrations.AlterField(
model_name='bankaccountdata',
name='document_number',
field=models.CharField(help_text='CUIT del propietario de la cuenta.', max_length=13, validators=[events.models.validate_cuit], verbose_name='CUIT'),
),
migrations.AlterField(
model_name='provider',
name='document_number',
field=models.CharField(help_text='CUIT del propietario de la cuenta.', max_length=13, unique=True, validators=[events.models.validate_cuit], verbose_name='CUIT'),
),
migrations.AlterField(
model_name='sponsor',
name='document_number',
field=models.CharField(help_text='CUIT', max_length=13, unique=True, validators=[events.models.validate_cuit], verbose_name='CUIT'),
),
]

0 comments on commit 565f6be

Please sign in to comment.