https://github.com/wadobo/socializa-api
Socializa is an interactive game for play it out of home
https://github.com/wadobo/socializa-api
api django game postgis postgresql python3
Last synced: 5 months ago
JSON representation
Socializa is an interactive game for play it out of home
- Host: GitHub
- URL: https://github.com/wadobo/socializa-api
- Owner: wadobo
- License: agpl-3.0
- Created: 2017-12-23T10:47:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-12-03T10:12:46.000Z (7 months ago)
- Last Synced: 2025-12-06T13:15:29.167Z (7 months ago)
- Topics: api, django, game, postgis, postgresql, python3
- Language: Python
- Size: 271 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 51
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/wadobo/socializa-api) [](https://www.codacy.com/app/Wadobo/socializa-api?utm_source=github.com&utm_medium=referral&utm_content=wadobo/socializa-api&utm_campaign=badger) [](https://www.codacy.com/app/Wadobo/socializa-api?utm_source=github.com&utm_medium=referral&utm_content=wadobo/socializa-api&utm_campaign=Badge_Coverage)
# socializa-api
Socializa is an interactive game for play it out of home
# Preinstall
You need a postgres database.
sudo su - postgres
psql -c "create user socializa password 'socializa'"
psql -c "create database socializa owner socializa"
# Install and exec
pip install -r requirements.txt
./manage.py migrate
./manage.py loaddata base/fixtures/applications.json
./manage.py runserver
# Run tests
You need permission for create test database:
sudo su - postgres
psql -c "create database test_socializa owner socializa"
psql test_socializa
ALTER USER socializa CREATEDB;
./manage.py test --keepdb