Client of the django-orchestra web hosting control panel for the final users. Developed using django framework.
Go to file
whitesource-bolt-for-github[bot] 547158eb08
Add .whitesource configuration file
2021-03-11 23:19:55 +00:00
musician Add test to reproduce the issue. 2020-03-18 08:03:19 +01:00
userpanel Merge branch 'master' into i18n 2020-01-29 11:12:20 +01:00
.env.example Add basic structure to access django-orchestra API 2019-10-29 10:47:50 +01:00
.gitignore Initial commit. Create app skeleton. 2019-10-10 09:18:34 +02:00
.whitesource Add .whitesource configuration file 2021-03-11 23:19:55 +00:00
CHANGELOG.md Merge branch 'user-login-issues' 2020-03-18 08:05:35 +01:00
LICENSE Add new BSD License (3 Clause) 2020-01-07 12:48:26 +01:00
README.md Add translation how to. 2019-12-18 10:55:46 +01:00
manage.py Initial commit. Create app skeleton. 2019-10-10 09:18:34 +02:00
requirements.txt Bump django from 2.2 to 2.2.13 2020-06-09 08:39:44 +00:00
setup.py Add package version information. 2019-10-25 13:30:51 +02:00

README.md

django musician

Python code is written following PEP 8 sytle guide and it is based on Django framework.

How do I get set up?

  1. Install Python and its packet manager (pip)
# on a Debian based environment:
apt=(
    git
    python3-pip
    python3-setuptools
)
sudo apt-get install --no-install-recommends -y ${apt[@]}

  1. Install virtualenv (isolate app python related requirements)
sudo pip3 install virtualenv
  1. Clone this repository
git clone https://github.pangea.org/slamora/django-musician.git
  1. Prepare env and install requirements
cd django-musician
virtualenv env
source env/bin/activate
pip3 install -r requirements.txt
  1. Start django devel server (check everything is ok)
python manage.py migrate
python manage.py runserver
  1. Open http://127.0.0.1:8000/ in your browser.

  2. If everything works, follow Django deployment instructions.

How to generate/update translations

  1. Go to musician folder and run:
cd django-musician/musician
../manage.py makemessages
processing locale ca
processing locale es
  1. Edit generated .po files and save it when you have finished.
musician/locale/ca/LC_MESSAGES/django.po  # catalan
musician/locale/es/LC_MESSAGES/django.po  # spanish
  1. To able to use a .po file in an application, it needs to be compiled to the binary .mo file format.
../manage.py compilemessages

More detailed instrucions on Django Translation docs