Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tonai/ermetik


https://github.com/tonai/ermetik

Last synced: 4 days ago
JSON representation

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';
```