Client of the django-orchestra web hosting control panel for the final users. Developed using django framework.
Go to file
Santiago Lamora 92715994c2 Prepare mailing list to be filtered by domain.
Will work when backend supports it.
2019-12-17 11:57:59 +01:00
musician Prepare mailing list to be filtered by domain. 2019-12-17 11:57:59 +01:00
userpanel Implement login and logout through cookie sessions 2019-10-30 13:05:46 +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
CHANGELOG.md Update changelog. 2019-10-31 14:26:15 +01:00
README.md Initial commit. Create app skeleton. 2019-10-10 09:18:34 +02:00
manage.py Initial commit. Create app skeleton. 2019-10-10 09:18:34 +02:00
requirements.txt Add basic structure to access django-orchestra API 2019-10-29 10:47:50 +01: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.