Flutter project disgned to simplify performance tracking of students and workers
1. Go to GitHub [Releases]
2. Download latest Anrodid/PC release
3. Run .apk .exe file
1. cd to folder that you want use.
2. git clone https://github.com/Wratheus/Matrix-of-Performance.git
2. Go to "setting" -> "API", obtain public key and url for requests,
3. In project folder, create [lib/src/core/database/client_credentials] folder
4. Create [auth.dart] file in that folder, fill the class:
class ClientCredentials{
static const String key = '';
static const String url = '';
}
- In Supabase DB table manager create table "user_tables"
- Create 4 columns:
- "id" (type: int-8)
- "table_name" (type: text)
- "user_id" (type: uuid)
- "table" (json)
- Activate URL Policies for that table
- Create 4 policies, using supabase templates:
- Enable insert for authenticated users only
- Enable delete for users based on user_id
- Enable select for users based on user_id
- Enable update for users based on user_id



