All Projects → indrz → indrz-be

indrz / indrz-be

Licence: GPL-3.0 License
Indoor mapping, routing system for orientation and wayfinding or facility management

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to indrz-be

kamu
You favorite book library
Stars: ✭ 65 (-18.75%)
Mutual labels:  django-rest-framework
openverse-api
The Openverse API allows programmatic access to search for CC-licensed and public domain digital media.
Stars: ✭ 41 (-48.75%)
Mutual labels:  django-rest-framework
Facial-Recognition-Attendance-System
An attendance system which uses facial recognition to detect which people are present in any image.
Stars: ✭ 48 (-40%)
Mutual labels:  django-rest-framework
instagram-api-clone
Instagram RESTful API clone made with Django REST framework
Stars: ✭ 56 (-30%)
Mutual labels:  django-rest-framework
django-tutorial
Django 4 tutorial projects
Stars: ✭ 11 (-86.25%)
Mutual labels:  django-rest-framework
Indoor-Map-Draw
No description or website provided.
Stars: ✭ 19 (-76.25%)
Mutual labels:  indoor
django-rest-framework-yaml
YAML support for Django REST Framework
Stars: ✭ 27 (-66.25%)
Mutual labels:  django-rest-framework
journal-manager
EteSync - server django app
Stars: ✭ 34 (-57.5%)
Mutual labels:  django-rest-framework
django-rest-framework-aggregates
Exposes aggregation features of the Django model queryset to the DRF API.
Stars: ✭ 23 (-71.25%)
Mutual labels:  django-rest-framework
django-api-bouncer
Simple Django app to provide API Gateways for micro-services
Stars: ✭ 18 (-77.5%)
Mutual labels:  django-rest-framework
RabbitMQ-with-Django
Example for using Microservices with RabbitMQ in a Django Web-Application
Stars: ✭ 26 (-67.5%)
Mutual labels:  django-rest-framework
Indoor-SfMLearner
[ECCV'20] Patch-match and Plane-regularization for Unsupervised Indoor Depth Estimation
Stars: ✭ 115 (+43.75%)
Mutual labels:  indoor
platform
API for the Penn Labs platform built using Django REST framework. Includes accounts engine, club directory, product listings, documentation etc.
Stars: ✭ 20 (-75%)
Mutual labels:  django-rest-framework
zwift-workout-file-reference
Reference documentation for the Zwift workout file format
Stars: ✭ 54 (-32.5%)
Mutual labels:  indoor
network-pipeline
Network traffic data pipeline for real-time predictions and building datasets for deep neural networks
Stars: ✭ 36 (-55%)
Mutual labels:  django-rest-framework
lego
LEGO Backend
Stars: ✭ 48 (-40%)
Mutual labels:  django-rest-framework
jasmin-web-panel
📨 Jasmin Web Panel for Jasmin SMS Gateway
Stars: ✭ 33 (-58.75%)
Mutual labels:  django-rest-framework
shopping-cart
A simple Shopping-cart built with React and Django REST Framework(DRF)
Stars: ✭ 41 (-48.75%)
Mutual labels:  django-rest-framework
react pyconlunch
Companion React Native app for Pycon Lunch app
Stars: ✭ 80 (+0%)
Mutual labels:  django-rest-framework
django-rest-framework-roles
Parameterizes Django REST Framework methods over user-defined roles
Stars: ✭ 132 (+65%)
Mutual labels:  django-rest-framework

INDRZ API (a.k.a the backend)

Gitlab hosts the main repo Mirror repo is at Github


This is the indrz API backend code repository.
documentation here indrz Docs

GitHub stars GitHub Issues GitHub release license Twitter

Quick Start Backend Setup

We are working on making the setup easier, with an all docker development environmentment. The production deployment aswell will be an all docker deployment.

  1. Visit indrz/settings/and copy the example-env.env file and save as .env file in root folder.
  2. Get Docker .env environment varialbles ready, located in the root folder allong with the docker-compose.yml :
  3. Build all required Docker images
    make build
    
  4. Run application
    make run
    
  5. Run database setup that will create postgresql schemas and set db user search_path
    make setup_indrz_db
    
  6. Load demo data for testing
    make load_demo_data
    
  7. Collect static file
    make collectstatic
    

Manage Postgres database

If you have issues with the db setup_indrz_db

psql -h localhost -U POSTGRES_USER -p POSTGRES_EXT_PORT -l
docker exec -it indrz_db bash
su postgres
dropdb indrzcloud
createdb -O indrzcloud indrzcloud
psql -c "create extension postgis" -d indrzcloud
psql -c "create extension pgrouting" -d indrzcloud
psql -c "CREATE SCHEMA IF NOT EXISTS django AUTHORIZATION indrzcloud" -d indrzcloud
psql -c "CREATE SCHEMA IF NOT EXISTS geodata AUTHORIZATION indrzcloud" -d indrzcloud
psql -c "ALTER ROLE indrzcloud IN DATABASE indrzcloud SET search_path TO django,geodata,public;" -d indrzcloud

User Make command

Commands help

make
- or -
make help

Collect Django static files

make collectstatic

Build Docker images

# Build Indrz image only
make build-indrz

# Build all
make build

Stop application

make stop

Application releases deployment

make deploy

Pull code from Git

make pull

Tech

Supported and built by:

Contact: Michael Diener

www.gomogi.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].