Skip to content

Commit

Permalink
cleanup, v0.2.2 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
donwilson committed Aug 23, 2023
1 parent 40d79fe commit d374f55
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 20 deletions.
3 changes: 0 additions & 3 deletions .docker/mariadb/.env

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ vendor/
.env

# ideas
/.idea
/.idea

# docker
/.docker/mariadb/data
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,11 @@ services:
mariadb:
image: mariadb
restart: unless-stopped
env_file:
- ./.docker/mariadb/.env
environment:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 1
MARIADB_DATABASE: "${DB_DATABASE}"
MARIADB_USER: "${DB_USER}"
MARIADB_PASSWORD: "${DB_PASSWORD}"
command: [
'--default_authentication_plugin=mysql_native_password',
'--character-set-server=utf8mb4',
Expand Down
15 changes: 5 additions & 10 deletions themes/pulsar_theme/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="container">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a href="/" class="navbar-brand">
<a href="<?=URL::to('/');?>" class="navbar-brand">
<?=esc_html(config('app.name', "Pulsar"));?>
</a>

Expand All @@ -21,18 +21,13 @@

<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Cache
<li class="nav-item">
<a href="<?=URL::to('/');?>" class="nav-link">
Home
</a>
<ul class="dropdown-menu">
<li><a href="/cache/get/" class="dropdown-item">Get</a></li>
<li><hr class="dropdown-divider"></li>
<li><a href="/cache/set/" class="dropdown-item">Set</a></li>
</ul>
</li>
</ul>
<form method="get" action="/search/" class="d-flex" role="search">
<form method="get" action="<?=URL::to('/search/');?>" class="d-flex" role="search">
<input type="search" name="q" value="" class="form-control me-2" placeholder="Search" aria-label="Search">
<button type="submit" class="btn btn-outline-success">Search</button>
</form>
Expand Down

0 comments on commit d374f55

Please sign in to comment.