Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
aa42b8544f
@ -1,19 +1,25 @@
|
|||||||
# Wep Application Engineering & Content Management Django Backend
|
# Wep Application Engineering & Content Management Django Backend
|
||||||
|
|
||||||
## Tips
|
## Tips
|
||||||
* use Jetbrains Pycharm IDE
|
* Use Jetbrains Pycharm IDE
|
||||||
* create and use a virtual environment
|
* Create and use a virtual environment with
|
||||||
|
```bash
|
||||||
|
$ python -m venv venv
|
||||||
|
$ source venv/bin/activate
|
||||||
|
```
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
$ cd ./app_be
|
```bash
|
||||||
|
$ cd ./app_be
|
||||||
|
|
||||||
$ pip install -r requirements.txt
|
$ pip install -r requirements.txt
|
||||||
|
|
||||||
$ python manage.py makemigrations
|
$ python manage.py makemigrations
|
||||||
$ python manage.py migrate
|
$ python manage.py migrate
|
||||||
$ python manage.py createsuperuser
|
$ python manage.py createsuperuser
|
||||||
|
|
||||||
$ python mangge.py runserver
|
$ python manage.py runserver
|
||||||
|
```
|
||||||
|
|
||||||
## ERROR handling
|
## ERROR handling
|
||||||
<em>Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools"</em>
|
<em>Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools"</em>
|
||||||
|
|||||||
@ -72,7 +72,6 @@
|
|||||||
"no-trailing-whitespace": true,
|
"no-trailing-whitespace": true,
|
||||||
"no-unnecessary-initializer": true,
|
"no-unnecessary-initializer": true,
|
||||||
"no-unused-expression": true,
|
"no-unused-expression": true,
|
||||||
"no-use-before-declare": true,
|
|
||||||
"no-var-keyword": true,
|
"no-var-keyword": true,
|
||||||
"object-literal-sort-keys": false,
|
"object-literal-sort-keys": false,
|
||||||
"one-line": [
|
"one-line": [
|
||||||
@ -129,12 +128,12 @@
|
|||||||
"kebab-case"
|
"kebab-case"
|
||||||
],
|
],
|
||||||
"no-output-on-prefix": true,
|
"no-output-on-prefix": true,
|
||||||
"use-input-property-decorator": true,
|
"no-inputs-metadata-property": true,
|
||||||
"use-output-property-decorator": true,
|
"no-outputs-metadata-property": true,
|
||||||
"use-host-property-decorator": true,
|
"no-host-metadata-property": true,
|
||||||
"no-input-rename": true,
|
"no-input-rename": true,
|
||||||
"no-output-rename": true,
|
"no-output-rename": true,
|
||||||
"use-life-cycle-interface": true,
|
"use-lifecycle-interface": true,
|
||||||
"use-pipe-transform-interface": true,
|
"use-pipe-transform-interface": true,
|
||||||
"component-class-suffix": true,
|
"component-class-suffix": true,
|
||||||
"directive-class-suffix": true
|
"directive-class-suffix": true
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user