├── .DS_Store ├── .gitignore ├── .streamlit └── config.toml ├── Dockerfile ├── Home.py ├── LICENSE ├── Procfile ├── README.md ├── assets ├── 657c7ed16b14af693c08b92d_GTC-Logotype-Dark.png └── favicon.png ├── data └── all_rounds.csv ├── fly.toml ├── pages ├── .🗓_Lifetime.py ├── 🏆_Leaderboard.py └── 🕸 _Networks.py ├── queries ├── get_2024_stats.sql ├── get_projects.sql ├── get_round_stats.sql ├── get_rounds.sql ├── get_summary_stats.sql └── get_votes.sql ├── requirements.txt └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/Dockerfile -------------------------------------------------------------------------------- /Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/Home.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: streamlit run Home.py --server.port $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/README.md -------------------------------------------------------------------------------- /assets/657c7ed16b14af693c08b92d_GTC-Logotype-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/assets/657c7ed16b14af693c08b92d_GTC-Logotype-Dark.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /data/all_rounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/data/all_rounds.csv -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/fly.toml -------------------------------------------------------------------------------- /pages/.🗓_Lifetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/pages/.🗓_Lifetime.py -------------------------------------------------------------------------------- /pages/🏆_Leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/pages/🏆_Leaderboard.py -------------------------------------------------------------------------------- /pages/🕸 _Networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/pages/🕸 _Networks.py -------------------------------------------------------------------------------- /queries/get_2024_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/queries/get_2024_stats.sql -------------------------------------------------------------------------------- /queries/get_projects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/queries/get_projects.sql -------------------------------------------------------------------------------- /queries/get_round_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/queries/get_round_stats.sql -------------------------------------------------------------------------------- /queries/get_rounds.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/queries/get_rounds.sql -------------------------------------------------------------------------------- /queries/get_summary_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/queries/get_summary_stats.sql -------------------------------------------------------------------------------- /queries/get_votes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/queries/get_votes.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitcoinco/gitcoin-grants-dash/HEAD/utils.py --------------------------------------------------------------------------------