├── .gitignore ├── .vscode └── settings.json ├── README.md ├── backend ├── Dockerfile ├── admin │ ├── admin │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── endpoints │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api │ │ │ ├── api.py │ │ │ ├── serializers.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20191224_1938.py │ │ │ ├── 0003_persona_eventos.py │ │ │ ├── 0004_auto_20191225_1537.py │ │ │ ├── 0005_auto_20191227_0945.py │ │ │ ├── 0006_auto_20191228_1841.py │ │ │ ├── 0007_auto_20191228_1914.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── manage.py │ └── planes │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api │ │ ├── serializers.py │ │ ├── urls.py │ │ └── views.py │ │ ├── apps.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20191225_1518.py │ │ ├── 0003_auto_20191225_1537.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py └── requirements.txt ├── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── assets │ └── css │ │ ├── normalize.css │ │ └── skeleton.css │ ├── components │ ├── PrivateRoute.js │ ├── footer.js │ ├── itemHeader.js │ ├── listHeader.js │ ├── mapa.js │ ├── nav.js │ ├── notFound.js │ ├── popUpAdd.js │ ├── popUpEdit.js │ ├── popUpRemove.js │ ├── tabMenu.js │ ├── tabla.js │ └── topMenu.js │ ├── config │ ├── apiService.js │ ├── baseurl.js │ ├── config.js │ ├── csrf_token.js │ ├── dateOptions.js │ └── meses.js │ ├── index.js │ ├── redux │ ├── actions │ │ ├── auth.js │ │ ├── index.js │ │ └── types.js │ └── reducers │ │ ├── auth.js │ │ ├── editMode.js │ │ ├── index.js │ │ ├── personasTabs.js │ │ └── removeMode.js │ ├── serviceWorker.js │ ├── setupTests.js │ └── views │ ├── aporte.js │ ├── aportes.js │ ├── estructura.js │ ├── estructuras.js │ ├── evento.js │ ├── eventos.js │ ├── home.js │ ├── login.js │ ├── personas.js │ ├── rolDePersona.js │ ├── rolesDePersonas.js │ ├── tipoDeAporte.js │ ├── tipoDeEstructura.js │ ├── tipoDeEvento.js │ ├── tiposDeAporte.js │ ├── tiposDeEstructura.js │ ├── tiposDeEvento.js │ ├── zona.js │ └── zonas.js ├── nginx ├── .dockerignore ├── .gitignore ├── Dockerfile ├── nginx.conf └── ssl │ └── localhost.conf ├── postgres ├── Dockerfile └── init │ └── 01-db_setup.sh └── production ├── .dockerignore └── docker-compose-prod.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/README.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/admin/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/admin/admin/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/admin/asgi.py -------------------------------------------------------------------------------- /backend/admin/admin/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/admin/settings.py -------------------------------------------------------------------------------- /backend/admin/admin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/admin/urls.py -------------------------------------------------------------------------------- /backend/admin/admin/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/admin/wsgi.py -------------------------------------------------------------------------------- /backend/admin/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/admin/endpoints/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/admin.py -------------------------------------------------------------------------------- /backend/admin/endpoints/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/api/api.py -------------------------------------------------------------------------------- /backend/admin/endpoints/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/api/serializers.py -------------------------------------------------------------------------------- /backend/admin/endpoints/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/api/urls.py -------------------------------------------------------------------------------- /backend/admin/endpoints/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/api/views.py -------------------------------------------------------------------------------- /backend/admin/endpoints/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/apps.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0002_auto_20191224_1938.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0002_auto_20191224_1938.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0003_persona_eventos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0003_persona_eventos.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0004_auto_20191225_1537.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0004_auto_20191225_1537.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0005_auto_20191227_0945.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0005_auto_20191227_0945.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0006_auto_20191228_1841.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0006_auto_20191228_1841.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/0007_auto_20191228_1914.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/migrations/0007_auto_20191228_1914.py -------------------------------------------------------------------------------- /backend/admin/endpoints/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/admin/endpoints/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/models.py -------------------------------------------------------------------------------- /backend/admin/endpoints/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/endpoints/tests.py -------------------------------------------------------------------------------- /backend/admin/endpoints/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /backend/admin/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/manage.py -------------------------------------------------------------------------------- /backend/admin/planes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/admin/planes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/admin.py -------------------------------------------------------------------------------- /backend/admin/planes/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/api/serializers.py -------------------------------------------------------------------------------- /backend/admin/planes/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/api/urls.py -------------------------------------------------------------------------------- /backend/admin/planes/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/api/views.py -------------------------------------------------------------------------------- /backend/admin/planes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/apps.py -------------------------------------------------------------------------------- /backend/admin/planes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/admin/planes/migrations/0002_auto_20191225_1518.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/migrations/0002_auto_20191225_1518.py -------------------------------------------------------------------------------- /backend/admin/planes/migrations/0003_auto_20191225_1537.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/migrations/0003_auto_20191225_1537.py -------------------------------------------------------------------------------- /backend/admin/planes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/admin/planes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/models.py -------------------------------------------------------------------------------- /backend/admin/planes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/admin/planes/tests.py -------------------------------------------------------------------------------- /backend/admin/planes/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/assets/css/normalize.css -------------------------------------------------------------------------------- /frontend/src/assets/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/assets/css/skeleton.css -------------------------------------------------------------------------------- /frontend/src/components/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/PrivateRoute.js -------------------------------------------------------------------------------- /frontend/src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/footer.js -------------------------------------------------------------------------------- /frontend/src/components/itemHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/itemHeader.js -------------------------------------------------------------------------------- /frontend/src/components/listHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/listHeader.js -------------------------------------------------------------------------------- /frontend/src/components/mapa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/mapa.js -------------------------------------------------------------------------------- /frontend/src/components/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/nav.js -------------------------------------------------------------------------------- /frontend/src/components/notFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/notFound.js -------------------------------------------------------------------------------- /frontend/src/components/popUpAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/popUpAdd.js -------------------------------------------------------------------------------- /frontend/src/components/popUpEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/popUpEdit.js -------------------------------------------------------------------------------- /frontend/src/components/popUpRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/popUpRemove.js -------------------------------------------------------------------------------- /frontend/src/components/tabMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/tabMenu.js -------------------------------------------------------------------------------- /frontend/src/components/tabla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/tabla.js -------------------------------------------------------------------------------- /frontend/src/components/topMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/components/topMenu.js -------------------------------------------------------------------------------- /frontend/src/config/apiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/config/apiService.js -------------------------------------------------------------------------------- /frontend/src/config/baseurl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/config/baseurl.js -------------------------------------------------------------------------------- /frontend/src/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/config/config.js -------------------------------------------------------------------------------- /frontend/src/config/csrf_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/config/csrf_token.js -------------------------------------------------------------------------------- /frontend/src/config/dateOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/config/dateOptions.js -------------------------------------------------------------------------------- /frontend/src/config/meses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/config/meses.js -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/redux/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/actions/auth.js -------------------------------------------------------------------------------- /frontend/src/redux/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/actions/index.js -------------------------------------------------------------------------------- /frontend/src/redux/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/actions/types.js -------------------------------------------------------------------------------- /frontend/src/redux/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/reducers/auth.js -------------------------------------------------------------------------------- /frontend/src/redux/reducers/editMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/reducers/editMode.js -------------------------------------------------------------------------------- /frontend/src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/reducers/index.js -------------------------------------------------------------------------------- /frontend/src/redux/reducers/personasTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/reducers/personasTabs.js -------------------------------------------------------------------------------- /frontend/src/redux/reducers/removeMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/redux/reducers/removeMode.js -------------------------------------------------------------------------------- /frontend/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/serviceWorker.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /frontend/src/views/aporte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/aporte.js -------------------------------------------------------------------------------- /frontend/src/views/aportes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/aportes.js -------------------------------------------------------------------------------- /frontend/src/views/estructura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/estructura.js -------------------------------------------------------------------------------- /frontend/src/views/estructuras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/estructuras.js -------------------------------------------------------------------------------- /frontend/src/views/evento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/evento.js -------------------------------------------------------------------------------- /frontend/src/views/eventos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/eventos.js -------------------------------------------------------------------------------- /frontend/src/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/home.js -------------------------------------------------------------------------------- /frontend/src/views/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/login.js -------------------------------------------------------------------------------- /frontend/src/views/personas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/personas.js -------------------------------------------------------------------------------- /frontend/src/views/rolDePersona.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/rolDePersona.js -------------------------------------------------------------------------------- /frontend/src/views/rolesDePersonas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/rolesDePersonas.js -------------------------------------------------------------------------------- /frontend/src/views/tipoDeAporte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/tipoDeAporte.js -------------------------------------------------------------------------------- /frontend/src/views/tipoDeEstructura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/tipoDeEstructura.js -------------------------------------------------------------------------------- /frontend/src/views/tipoDeEvento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/tipoDeEvento.js -------------------------------------------------------------------------------- /frontend/src/views/tiposDeAporte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/tiposDeAporte.js -------------------------------------------------------------------------------- /frontend/src/views/tiposDeEstructura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/tiposDeEstructura.js -------------------------------------------------------------------------------- /frontend/src/views/tiposDeEvento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/tiposDeEvento.js -------------------------------------------------------------------------------- /frontend/src/views/zona.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/zona.js -------------------------------------------------------------------------------- /frontend/src/views/zonas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/frontend/src/views/zonas.js -------------------------------------------------------------------------------- /nginx/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/nginx/.dockerignore -------------------------------------------------------------------------------- /nginx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/nginx/.gitignore -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/ssl/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/nginx/ssl/localhost.conf -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/init/01-db_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/postgres/init/01-db_setup.sh -------------------------------------------------------------------------------- /production/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/production/.dockerignore -------------------------------------------------------------------------------- /production/docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geropellicer/DjangoReact/HEAD/production/docker-compose-prod.yml --------------------------------------------------------------------------------