Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 677 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 677 Bytes

Santa Unchained

CI

Repository prepared for backend workshop with AGH Kernel.

Prerequisites

Local Development

First create postgresql database:

create user santa_unchained with createdb;
alter user santa_unchained password 'santa_unchained';
create database santa_unchained owner santa_unchained;

Now you can setup virtualenv and django:

virtualenv venv
source venv/bin/activate
make bootstrap