OronWare is an app for my friend Karel, where he can manage all informations about herbs, illnesses and recipes.
- Django 1.11
- Python 3.6
- PostgreSQL
- HTML5, CSS3, JavaScript, jQuery
- Create own virtual environment
$ python3 -m venv venv
and then activate the environment.
- Clone repository
$ git clone https://github.com/SvetlanaM/oronware.git
- Install requirements from the project:
$ pip3 install -r requirements.txt
- Create own database settings as a new custom database under existing configuration in the settings.py file.
- Run database migrations:
$ ./manage.py migrate --database="your database name in settings file"
- Create own admin super user:
$ ./manage.py createsuperuser --database="your database name in settings file"
- Run the app:
$ ./manage.py runserver
Create a new branch which is following the rules: develop_githubusername
Do not push to the master branch.