Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 542 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 542 Bytes

pycljs

  • This repo is just a personal preferred choice for full-stack development aiming for quick POC.

How to run this repo

(Assume you are at the root of this repo)

Backend

# terminal 0
python -m venv pycljs
source pycljs/bin/activate 
pip install flask
python py/server.py

Frontend

# terminal 1
npm install
yarn dev
  • Then go to the browser and open localhost:5000.
  • Hotcode reloading is supported when cljs files are modified.
  • Use NextUI and Tailwind CSS for styling.