我第一次使用pinax模板。我正在关注文档。
我开始了项目。提到的所有内容here。
问题是显示页面但未加载css和javascript文件。
浏览器控制台出错提示
Failed to load resource: the server responded with a status of 404 (Not Found) app.css
Failed to load resource: the server responded with a status of 404 (Not Found) site.js
我在这里遗漏了什么吗?还有其他什么可以做,文件中没有吗?
答案 0 :(得分:3)
编辑:确保在继续之前安装了节点。
安装Pinax项目的新程序(自2018年1月3日起工作):
# First, activate your virtualenv or similar
. ~/.virtualenvs/myproject/bin/activate
# Second, install Pinax command line tool
pip install pinax-cli
# Install Pinax project
pinax start {project type} {custom name}
cd {custom name}
# Install your project's dependencies from 'package.json' into node_modules/
npm install
# Install Django/Pinax dependencies
pip install -r requirements.txt
# Prepare for Django
python manage.py migrate
python manage.py loaddata sites
python manage.py createsuperuser
# Run a proxy on port 3000
npm run dev # this will run webpack with watch and compile code as it changes
# Browse to http://127.0.0.1:3000
注意:项目中的README.md文件应该为您提供正确的安装说明。