home Introduction to Reflex
Getting Started
This is mainly taken from the Reflex Getting Started installation page.
- create a directory for your app: mkdir my_app, cd into it
- Create a virtual environment (should go without saying! )
- pip install reflex
- reflex init ## answer input prompts
- can init from a git repo instead, see installation docs linked above
- reflex run
- defaults to running on local host with app at http://localhost:3000
- reflex is also used to deploy from the command line, see
Reflex Hosting Quick Start guide.
back, How it Works next, Simple Counter App