Skip to content

Flutter App with MySQL Database which contains useful Projects, Scripts, Accounts and Chatting

License

Notifications You must be signed in to change notification settings

OptixWolf/Arktox

Repository files navigation

Arktox

version

Deutsch

Arktox ist eine Flutter-Anwendung, die Daten aus einer MySQL-Datenbank liest und ausgibt. In diesem Fall enthält die Datenbank Daten über andere großartige Projekte, die entdeckt werden können. Außerdem bietet die Anwendung Skripte und Chats mit anderen Nutzern.

So richtest du Arktox mit deiner eigenen Datenbank ein

Important

Um das Projekt auszuführen, musst du Flutter installiert haben

Schritt 1: Lade das Projekt hier herunter
Schritt 2: Erstelle eine MySQL Datenbank
Schritt 3: Um die Datenbank zu erstellen führe die Skripte arktox_creating_script.sql, arktox_inserting_script.sql und arktox_insert_otherthings_script.sql im scripts Ordner in dieser reihenfolge aus
Schritt 4: Erstelle die Datei keys.dart im lib Ordner
Schritt 5: Füge den folgenden Code in die Datei keys.dart ein und ersetze die Werte mit deinen eigenen

const host = 'youripadress';
const port = yourport;
const user = 'youruser';
const password = 'yourpassword';
const databaseName = 'arktox';

Schritt 6: Führe flutter pub get aus
Schritt 7: Erstelle das Projekt (nicht Web auswählen)

Allgemeine Informationen:

  • Das Passwort der Benutzer der App in der Datenbank wird als SHA256-Hash angegeben

English

Arktox is a Flutter application that reads and outputs data from a MySQL database. In this case, the database contains data on other great projects that can be discovered. Furthermore, the application offers scripts and chats with other users

How to set up Arktox with your own database

Important

To run the project, you must have Flutter installed

Step 1: Download the project here
Step 2: Create a MySQL database
Step 3: To create the database execute the scripts arktox_creating_script.sql, arktox_inserting_script.sql and arktox_insert_otherthings_script.sql in the scripts folder in this order
Step 4: Create the file keys.dart in the lib folder
Step 5: Paste the following code into the keys.dart file and replace the values with your own

const host = 'youripadress';
const port = yourport;
const user = 'youruser';
const password = 'yourpassword';
const databaseName = 'arktox';

Step 6: Execute flutter pub get
Step 7: Create the project (do not select web)

General information:

  • The password of the users of the app in the database is specified as SHA256 hash

About

Flutter App with MySQL Database which contains useful Projects, Scripts, Accounts and Chatting

Resources

License

Stars

Watchers

Forks

Packages

No packages published