Alex Savenko
/
analytics
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
2d533b5dc7fa5f7be5c623515ceffd52bffa5395
Authored by
Alex Savenko
2017-02-08 11:48:33 -0500
1 parent
4487a7c8
phalcon tools add config
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
app/config/config.ini
Inline
Side-by-side
app/config/config.ini
0 → 100755
Wrap text
Show/Hide comments
View file @
2d533b5
1
+[database]
2
+adapter = Mysql
3
+host = "127.0.0.1"
4
+username = "root"
5
+password = "secret"
6
+dbname = "store_db"
7
+
8
+[phalcon]
9
+controllersDir = "../app/controllers/"
10
+modelsDir = "../app/models/"
11
+viewsDir = "../app/views/"
12
+baseUri = "/store/"
...
...