Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyshka/wagtail-vue-talk
How to vue wagtail in a better light
https://github.com/hyshka/wagtail-vue-talk
django vue-cli vuejs wagtail
Last synced: 4 months ago
JSON representation
How to vue wagtail in a better light
- Host: GitHub
- URL: https://github.com/hyshka/wagtail-vue-talk
- Owner: hyshka
- License: mit
- Created: 2018-10-23T23:41:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-26T16:24:23.000Z (over 1 year ago)
- Last Synced: 2024-07-30T21:01:08.512Z (6 months ago)
- Topics: django, vue-cli, vuejs, wagtail
- Language: Python
- Size: 13.4 MB
- Stars: 27
- Watchers: 4
- Forks: 7
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wagtail-vue-talk
How to vue wagtail in a better light## Development with Docker
The Django server will run on port `8000`, and the Node.js server compiling the Vue.js app will run on port `8080`.
To access the Wagtail admin go to http://localhost:8000/admin/, login is `demo` / `demo123`.
The Vue.js app is expecting the Wagtail API to be avaialable at `localhost:8000/api/v2/`.
```
# build image and start containers
make up# enter backend (python) container
make enter# start django server (inside container)
django-admin.py runserver 0.0.0.0:8000# enter frontend (node.js) container
make enter_fe# start node server (inside container)
npm run serve# stop and remove containers
make clean
```