This is a site to keep track of Australian state and territory WCA rankings. Contributors are greatly appreciated. Please contact me if you are familiar with Flask and/or the WCA API.
- Clone this repository
- Install Flask
pip install Flask
- Navigate to project directory and install NPM dependencies
cd .../ausstaterankings
npm install
- Create Postgres database and configure .env
touch .env
SECRET_KEY=ERWArfC+T3A32qFYyilbmw==
# OAuth
CLIENT_ID=[Contact to request access]
CLIENT_SECRET=[Contact to request access]
DATABASE_URI=postgresql://[url]
- Start Tailwind
npm run tailwind
- Configure and run the app
flask --app app run --debug