Skip to content

Instantly share code, notes, and snippets.

@umanda
Created August 28, 2015 05:22
Show Gist options
  • Save umanda/e05beef876ad3f2c4228 to your computer and use it in GitHub Desktop.
Save umanda/e05beef876ad3f2c4228 to your computer and use it in GitHub Desktop.
Create Slim project structure in cmd
# mkdir -p slim_bloggin_app/{app/{routes,views},public/{css,js,img}} && cd slim_bloggin_app && touch app/bootstrap.php app/routes.php public/index.php public/.htaccess
# tree -a
.
├── .DS_Store
├── app
│ ├── bootstrap.php
│ ├── routes
│ ├── routes.php
│ └── views
└── public
├── .htaccess
├── css
├── img
├── index.php
└── js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment