mkdir -p ~/dev cd dev git clone git clone [email protected]:hacklabr/timtec.git cd timtec
# Pacote do archlinux sudo pacman -Sy python2 python-virtualenvwrapper postgresql nodejs sudo systemctl enable postgresql sudo systemctl start postgresql sudo su - postgres -c "initdb --locale pt_BR.UTF-8 -D '/var/lib/postgres/data'" sudo su - postgres -c "createuser -d $USER" createdb timtec
Aqui estamos prssupondo que você está usando o Virtualenvwrapper (https://wiki.archlinux.org/index.php/Python/Virtualenv)
mkvirtualenv -p /usr/bin/python2 timtec workon timtec
cp timtec/settings_local.py.template timtec/settings_local.py # Altere o arquivo settings_local.py para entrar no banco. make ./manage.py changepassword admin
./manage.py runserver