Skip to content

Instantly share code, notes, and snippets.

@agiertli
Created December 25, 2015 10:27
Show Gist options
  • Save agiertli/9f0fbc8a4cf96381b9ed to your computer and use it in GitHub Desktop.
Save agiertli/9f0fbc8a4cf96381b9ed to your computer and use it in GitHub Desktop.
www/ ← web root directory
└── nette-blog/
├── app/ ← application directory
│ ├── config/ ← configuration files
│ ├── forms/ ← form classes
│ ├── model/ ← model layer classes
│ ├── presenters/ ← presenter classes
│ │ └── templates/← templates
│ ├── router/ ← configuration of URL addresses
│ └── bootstrap.php ← boot file
├── bin/ ← utilities folder
├── log/ ← here you can find error message logs
├── temp/ ← place for temporary files (cache, sessions, etc.)
├── test/ ← directory for unit tests
├── vendor/ ← libraries for your application
│ └── nette/ ← like your favorite framework :-)
└── www/ ← local web root - this is the only directory accessible from the web
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment