Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonai/ermetik
https://github.com/tonai/ermetik
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tonai/ermetik
- Owner: tonai
- Created: 2024-07-18T10:01:18.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T15:49:14.000Z (6 months ago)
- Last Synced: 2024-07-18T20:18:33.007Z (6 months ago)
- Language: PHP
- Size: 153 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ermetik
Connect to mysql:
```sh
sudo mysql
```Then create database and user:
```sql
CREATE DATABASE ermetik;
CREATE USER 'ermetik'@'localhost' IDENTIFIED BY 'kitemre';
GRANT ALL ON ermetik.* TO 'ermetik'@'localhost';
```