Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamenriderkuuga/farm
https://github.com/kamenriderkuuga/farm
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamenriderkuuga/farm
- Owner: KamenRiderKuuga
- Created: 2024-09-07T15:56:35.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T01:44:44.000Z (4 months ago)
- Last Synced: 2024-09-15T07:52:00.141Z (4 months ago)
- Language: HTML
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# farm
## 一、开发参考
> 本项目是一个基于Flask的Web应用,前端使用Tailwind CSS。下述依赖版本请参考项目根目录下的`requirements.txt`文件以及`package.json`文件。**前端**
Node.js + npm,然后,安装Tailwind CSS:
```bash
npm install -D tailwindcss
```在项目根目录启动Tailwind编译进程:
```bash
npx tailwindcss -i ./src/app/static/css/input.css -o ./src/app/static/css/output.css --watch
```**后端**
Python 3.9+,然后,安装Flask:
```bash
pip install Flask
```以debug模式启动Flask:
```bash
flask --app ./src/run.py --debug run
```