Skip to content

unbrokenguy/sys-arch-conf-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Study Project for system architecture

Service responsible for database connection configurations.

Build Status

Installation

Install poetry

pip install poetry

Install the project dependencies

poetry install 

Setup

Add environments

  • SECRET_KEY: Your secret key for django application.
  • POSTGRES_HOST: PostgreSQL host.
  • POSTGRES_USER: PostgreSQL user.
  • POSTGRES_PASSWORD: PostgreSQL password.
  • POSTGRES_NAME: PostgreSQL database name.

Start current server

Spawn a shell within the virtual environment

poetry shell

Start server

cd src && python manage.py runserver 8001

Server will be available at this url http://localhost:8001/ or http://127.0.0.1:8001/

Usage

Related repositories

  1. Data Server
  2. Authorization Server
  3. Command line client
  4. Front end