https://github.com/svetlanam/oronware
OronWare is an app for my friend Karel, where he can manage all informations about herbs, illnesses and recipes.
https://github.com/svetlanam/oronware
backend css3 django django-templates ehealth herbs html5 illness oron python3 recipes
Last synced: 3 months ago
JSON representation
OronWare is an app for my friend Karel, where he can manage all informations about herbs, illnesses and recipes.
- Host: GitHub
- URL: https://github.com/svetlanam/oronware
- Owner: SvetlanaM
- Created: 2022-04-05T08:40:13.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T08:40:37.000Z (about 4 years ago)
- Last Synced: 2026-03-31T06:30:42.049Z (3 months ago)
- Topics: backend, css3, django, django-templates, ehealth, herbs, html5, illness, oron, python3, recipes
- Language: JavaScript
- Homepage:
- Size: 3.62 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# OronWare
> **OronWare is an app for my friend Karel, where he can manage all informations
> about herbs, illnesses and recipes.**
### Technologies
- Django 1.11
- Python 3.6
- PostgreSQL
- HTML5, CSS3, JavaScript, jQuery
## Quick Start
1. Create own virtual environment
```
$ python3 -m venv venv
```
and then activate the environment.
2. Clone repository
```
$ git clone https://github.com/SvetlanaM/oronware.git
```
3. Install requirements from the project:
```
$ pip3 install -r requirements.txt
```
4. Create own database settings as a new custom database under existing
configuration in the settings.py file.
5. Run database migrations:
```
$ ./manage.py migrate --database="your database name in settings file"
```
6. Create own admin super user:
```
$ ./manage.py createsuperuser --database="your database name in settings file"
```
7. Run the app:
```
$ ./manage.py runserver
```
## Branches
Create a new branch which is following the rules: _develop_githubusername_
Do not push to the master branch.