mustafa

Version, currently 0.1.02 versions

github.com/guvencenanguvenal/mustafa

Mustafa is Simple and Fast MVC Framework for Crystal

33 stars
0 dependents
License: MIT

Nothing has been indexed for 0.1.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  mustafa:
    github: guvencenanguvenal/mustafa
    version: ~> 0.1.0

Then run:

shards install

shard.yml

No shard.yml has been indexed for 0.1.0. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

<img src="https://cloud.githubusercontent.com/assets/11555504/21957574/e89ce81e-daa1-11e6-9bde-8b505ac4a5d7.png" width="50" height="75" />

# MustafaVC

Mustafa is MVC Framework for Crystal

# Getting Started :sunglasses:

Download [Visual Studio Code](https://code.visualstudio.com/download) and add [Crystal](https://github.com/g3ortega/vscode-crystal) extension for faster coding with [snippets](https://github.com/guvencenanguvenal/mustafa/blob/master/snippets.md).

Add your `shard.yml` and install lib. Yes it's ready! Build your MVC project.

For more information, you can see [Mustafa Wiki](https://github.com/guvencenanguvenal/mustafa/wiki)

# Installation :star:

Add this to your application's `shards.yml`

```
dependencies:
  mustafa:
    github: guvencenanguvenal/mustafa
    branch: master
```

# Route :rocket:

*http://localhost/welcome*

call controller which name is Welcome

*http://localhost/welcome/hello*

call controller which name is Welcome and run action(method) which name is "hello"

*http://localhost/welcome/hello/param1/param2*

call controller which name is Welcome and run action(method) which name is "hello" and.. 

```
Input.params[0] => "param1"
Input.params[1] => "param2"
```
>**Note:** params is not get or post

# Configuration :mag_right:

Configuration file is config.cr on src/mustafa/config/config.cr
```
DEFAULT_CONTROLLER = "your default controller" #this controller is default which response http://localhost/ 
MODULE_NAME = "your module name"
VIEW_PATH = "src/your module name/view" # ./src/mustafa/view/ecr_file.ecr
```
and choose your localhost
```
LOCALHOST_ADDRESS = "0.0.0.0"
```
# Super Simple :checkered_flag:

## Model

Model name must be capitalized case (first letter is upper, other letters is lower)

Welcomemodel.cr
```
class Welcomemodel < Core::Model
  init Welcomemodel, Core::Model::Scope::Singleton

  def hello
    puts "hello"
  end
end
```

## Controller

Controller name must be capitalized case (first letter is upper, other letters is lower)

Welcomecontroller.cr
```
class Welcomecontroller < Core::Controller
  init Welcomecontroller

  action "index" do
  
    Core.loader.library([Customlib, Library::Crypto]) do |val|
      val[Customlib].as(Customlib).hello
    end
  
    Core.loader.model(Welcomemodel) do |model|
      model.deneme
    end
  
    Core.loader.view(self, Welcomeview)
  end
end
```

## View

View has a class and an ECR File

Welcomeview.cr
```
class Welcomeview < Core::View
  init "Welcome.ecr"
  
  def load
    if (view_params["key"] == "value")
      puts "hello"                      #put hello on terminal
    end
  end
end
```
Welcome.ecr
```
Selam, <%= @view_params["key"] %>!      # value
```

## Run, go go go

Yourproject.cr
```
require "mustafa"
#And require your controller, view and model files

module Yourproject
  Mustafa.run
end
```

#Contribute

Please fork project [MustafaVC](https://github.com/guvencenanguvenal/mustafa/fork)

#Thanks

Thanks [porras/session](https://github.com/porras/session) for session and encoder class.

Thanks [logomakr.com](http://logomakr.com) for logo.