Re: Advice on running local dev webserver

2021-06-04 Thread Lewis John McGibbney
Excellent Sumit. Thank you On 2021/06/04 06:17:09, Sumit Maheshwari wrote: > This is how I run webserver on local: > > 1. Checkout the code from GitHub > 2. Create or activate a python3 virtualenv > 3. Within Airflow dir, do a "python setup.py install" or "pip install -e ." > 4. Run

Re: Advice on running local dev webserver

2021-06-04 Thread Sumit Maheshwari
This is how I run webserver on local: 1. Checkout the code from GitHub 2. Create or activate a python3 virtualenv 3. Within Airflow dir, do a "python setup.py install" or "pip install -e ." 4. Run "./airflow/www/compile_assets.sh" to compile JS assets 5. If this is the first time you are running

Advice on running local dev webserver

2021-06-03 Thread Lewis John McGibbney
Hi dev@, I'm working on implementing a Apache Flagon UserALE JS analytics backend for Airflow cf. https://github.com/apache/airflow/pull/16230 Specifically, in this thread I'm asking how to run the webserver locally so I can debug it. Ideally this does not involve deploying into Docker or