Reputation: 57
I'm a newbie studying how it works YII. I found this project interesting.
Yii2-simple-classified
with app-advanced
https://github.com/deviardn/diadoo
I read the documentation but I do not know exactly what I should do to be able to test it on localhost.
I already have YII2 installed with composer.
what should I do?
Thanks for your kind recommendations.
Upvotes: 3
Views: 2693
Reputation: 1341
The project looks new, the author should explain more. In general, usually I clone the project first
$ git clone https://github.com/deviardn/diadoo.git .
Install the project with composer
$ composer update // or install
Initiate the code with this command, and set it to Development
$ ./init
Initiate the database migration, if necessary
$ ./yii migrate
And lastly, give it a try from your browser, access the localhost.
Upvotes: 6