The Database Playground is a platform designed to enhance your SQL skills through an engaging gamification system.
- Use PhpStorm for PHP and Twig development, and VS Code for TypeScript development.
- Devenv provides a comprehensive development environment, including pre-commit hooks and runtimes for PHP and Node.js. Learn more at Devenv.
- Docker Compose is utilized to set up the development runtime environment. For more details, visit the Docker Compose documentation.
- Clone the repository.
- Run
devenv up
to start the development environment. - Execute
composer install
to install PHP dependencies. - Run
pnpm install
to install Node.js dependencies, which is useful for type checking. - Start the database, Redis, and PHP runtime for development:
docker compose up -d
- Create an administrator user by running:
php ./bin/console app:create-user -p "yourpassword" -r "ROLE_ADMIN" "admin" "[email protected]"
ROLE_USER
is the default role suitable for regular users, such as students.ROLE_ADMIN
is the administrator role that grants access to the admin panel, enables management of questions, and allows viewing of all submissions and feedback.ROLE_ALLOWED_TO_SWITCH
is the role that permits switching (impersonating) to another user, which is useful for debugging.
- (Optional) Import the schema and questions using:
php ./bin/console app:import schema.json
- Access the application at
https://localhost
, and usehttps://localhost/admin
to access the admin panel.
- Deploy Redis, PostgreSQL, Meilisearch, and Umami (for statistics) on Zeabur.
- Deploy the application in Git mode on Zeabur.
- Add the following environment variables to the application:
DATABASE_URL=postgresql://${POSTGRES_USERNAME}:${POSTGRES_PASSWORD}@postgresql.zeabur.internal:5432/${POSTGRES_DATABASE}?serverVersion=16&charset=utf8 REDIS_URI=${REDIS_CONNECTION_STRING} SERVER_NAME=:${PORT} APP_SECRET=${PASSWORD} MEILISEARCH_URL=http://meilisearch.zeabur.internal:7700 MEILISEARCH_API_KEY=${MEILI_MASTER_KEY} UMAMI_DOMAIN=your-umami-domain.tld UMAMI_WEBSITE_ID=your-website-id OPENAI_API_KEY=your-openai-api-key LINE_NOTIFY_DSN=linenotify://line-notify-token@default
- Create an index in Meilisearch by running:
php bin/console meili:create --update-settings
- Bind your domain, and the application will be ready for use.
We provide a Docker Compose configuration based on Symfony Docker for deployment. The prebuilt image is available at the GitHub Registry.
To deploy the application, you may need to update the secret or environment variables in the compose.yaml
and
compose.prod.yaml
files, and then run the following command:
docker compose -f compose.yaml -f compose.prod.yaml up -d