The Wayback Machine - http://web.archive.org/web/20200916083127/https://github.com/genophy/ng-simple-md-note
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
doc
 
 
e2e
 
 
 
 
sql
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

SimpleBlog

review

Demo Page

01. main page

001

02. edit blog page

002

03. update account

003

04. set category(just admin)

004

db (install)

apt-get install mariadb-server

mysql_secure_installation

...
Enter current password for root (enter for none):
Set root password? [Y/n] Y
New password:7*
...


mysql -r root -p

create user 'eno'@'%' identified by '0*';
create database note_db;
grant all on note_db.* to 'eno'@'%';
flush privileges;

db (mysql)

see './sql/mysql_db_ng_blog.sql'

You can’t perform that action at this time.