move scripts to scripts dir

This commit is contained in:
2026-05-08 11:39:46 +02:00
parent 1f141fac7d
commit 1004ead899
10 changed files with 21 additions and 15 deletions

4
.gitignore vendored
View File

@@ -1,3 +1,3 @@
/database database
/html html
*.zip *.zip

View File

@@ -1,11 +1,4 @@
<?php <?php
/**
* Plugin Name: Go Form Plugin
* Description: Form plugin for Go players
* Version: 0.03
* Author: Nikola Petrov
*/
if (!defined('ABSPATH')) if (!defined('ABSPATH'))
exit; exit;

13
main.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
/**
* Plugin Name: Go Form Plugin
* Description: Form plugin for Go players
* Version: 0.03
* Author: Nikola Petrov (nikola@petrovv.com)
*/
if (!defined('ABSPATH'))
exit;
include_once "go-form-plugin/go-form-plugin.php";

View File

@@ -7,10 +7,10 @@ CONTAINER_NAME_DB='wordpress_db'
CONTAINER_NAME_WP='wordpress' CONTAINER_NAME_WP='wordpress'
# Stop and remove containers # Stop and remove containers
podman stop $CONTAINER_NAME_DB $CONTAINER_NAME_WP 2>/dev/null || true podman stop $CONTAINER_NAME_DB $CONTAINER_NAME_WP || true
podman rm $CONTAINER_NAME_DB $CONTAINER_NAME_WP 2>/dev/null || true podman rm $CONTAINER_NAME_DB $CONTAINER_NAME_WP || true
# Remove pod # Remove pod
podman pod rm -f $POD_NAME 2>/dev/null || true podman pod rm -f $POD_NAME || true
echo "removed pods" echo "removed pods"

View File

@@ -9,11 +9,11 @@ CONTAINER_NAME_DB='wordpress_db'
CONTAINER_NAME_WP='wordpress' CONTAINER_NAME_WP='wordpress'
# Stop and remove containers # Stop and remove containers
podman stop $CONTAINER_NAME_DB $CONTAINER_NAME_WP 2>/dev/null || true podman stop $CONTAINER_NAME_DB $CONTAINER_NAME_WP || true
podman rm $CONTAINER_NAME_DB $CONTAINER_NAME_WP 2>/dev/null || true podman rm $CONTAINER_NAME_DB $CONTAINER_NAME_WP || true
# Remove pod # Remove pod
podman pod rm -f $POD_NAME 2>/dev/null || true podman pod rm -f $POD_NAME || true
echo "removed pods" echo "removed pods"
#exit 0 #exit 0