https://github.com/bukosabino/guauqueanimales
Web Server and API Web for lost/found/adoption/reception animals
https://github.com/bukosabino/guauqueanimales
Last synced: about 1 month ago
JSON representation
Web Server and API Web for lost/found/adoption/reception animals
- Host: GitHub
- URL: https://github.com/bukosabino/guauqueanimales
- Owner: bukosabino
- License: gpl-3.0
- Created: 2016-01-18T12:46:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-20T15:33:32.000Z (about 7 years ago)
- Last Synced: 2025-01-25T17:12:33.674Z (3 months ago)
- Language: HTML
- Homepage: http://guauqueanimales.com
- Size: 4.39 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Guau! qué animales
Web Server and API Web for lost/found/adoption/reception animals
Run example (in spanish) -> http://guauqueanimales.com
## Local settings:
set settings values in encuentra_perros_server/settings_local.py
TO_ADMIN_EMAIL = ('[email protected]',)
FROM_ADMIN_EMAIL = ['[email protected]', '[email protected]',]
SECRET_KEY = 'key_example'
## Twitter settings:
for send tweets, guauqueanimales uses this python wrapper API Twitter: https://github.com/ryanmcgrath/twython
from twython import Twython
CONSUMER_KEY = ''
CONSUMER_SECRET = ''
ACCESS_TOKEN = ''
ACCESS_TOKEN_SECRET = ''
TWITTER = Twython(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
## Deploy local:
* git clone https://github.com/bukosabino/guauqueanimales.git
* pip install -r requirements.txt
* python manage.py migrate
* python manage.py runserver