Yoonjunhyeon

vue-python 연결 자동화 코드 추가 중.

#!/bin/bash
source ./env/bin/activate
python manage.py migrate
python manage.py runserver
\ No newline at end of file
cd ../frontend
npm run build
cd ../backend
rm -rf static
./manage.py collectstatic
rm -rf static/admin
rm -rf static/rest_framework
python vue2djangoTemplate.py
\ No newline at end of file
......
......@@ -25,4 +25,30 @@
<script src="{% static '/js/app.a2bbd68a.js' %}"></script>
</body>
</html>
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name=viewport content="width=device-width,initial-scale=1">
<link rel=icon href=/favicon.ico>
<title>Profit-Hunter</title>
<link href=/css/app.1dc1d4aa.css rel=preload as=style>
<link href=/css/chunk-vendors.abb36e73.css rel=preload as=style>
<link href=/js/app.a2bbd68a.js rel=preload as=script>
<link href=/js/chunk-vendors.c489da91.js rel=preload as=script>
<link href=/css/chunk-vendors.abb36e73.css rel=stylesheet>
<link href=/css/app.1dc1d4aa.css rel=stylesheet>
</head>
<body><noscript><strong>We're sorry but front doesn't work properly without JavaScript enabled. Please enable it to
continue.</strong></noscript>
<div id=app></div>
<script src=/js/chunk-vendors.c489da91.js></script>
<script src=/js/app.a2bbd68a.js></script>
</body>
</html>
\ No newline at end of file
......