An open API service indexing awesome lists of open source software.

https://github.com/theel0ja/php-boilerplate-user-management

Custom PHP template, based on UpdateWatch (updatewatch.lelux.fi) code.
https://github.com/theel0ja/php-boilerplate-user-management

boilerplate bootstrap mariadb mysql php twig

Last synced: about 2 months ago
JSON representation

Custom PHP template, based on UpdateWatch (updatewatch.lelux.fi) code.

Awesome Lists containing this project

README

          

## Running in production

```bash
composer install
cp .env.dist .env
yarn install
```

### Database

Make MariaDB database as described [here](https://wiki.lelux.fi/mysql/) and add the password to `.env`.

```sql
CREATE USER 'app_databaseuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL ON app_database.* TO 'app_databaseuser'@'localhost' IDENTIFIED BY 'password';
```

```bash
sudo mysql -u root < db.sql
```