A portable analytics dashboard for the everyday.
The app is live and hosted on Vercel: dalytic.vercel.app
demo.mp4
Clone and open the repository:
git clone https://github.com/noelkronenberg/dalytic.git # clone repository
cd dalytic # change directoryRun the app locally:
pip install -r requirements.txt # install dependencies
export FLASK_SECRET_KEY=$(openssl rand -hex 32) # set secret key
python run.py # start deployment serverAlternatively, run a Vercel deployment locally (Vercel account and project needed):
npm i -g vercel # install Vercel CLI
vercel link # link to Vercel project
vercel env pull # pull environment variables ('FLASK_SECRET_KEY')
vercel dev # start deployment server