Get started in 5 minutes

You can take this steps for install or watch video Watch Video
Download SPIN FRAMEWORK
For start you can download through boton named download or by Github. this solution contains all library requiered by execute SPIN WEB FRAMEWORK. In this moment you can download version 0.2.1.4. (Go to other versions)
Download Version 0.2.1.4
Load SPIN WEB FRAMEWORK into the IDE
SPIN FRAMEWORK you can execute with Visual Studio, Visual Studio for Mac and Visual Studio Code.
CONTINUE
Database Configuration
Database configuration is important, because SPIN WEB FRAMEWORK, it does not working without this one, for that reason it must be configured database engine, before execute project. Actually support SEL SERVER and MySQL. For configuration must be modify to file appsettings.json and you have to replace field "ConnectionString", always manteint name connection "Spin " and have to connection string change dependent to database
Creating Tables
Before must have been created database, but tables make to automatically by Framework, only need execute application. CMS WEB FRAMEWORK internally use Migration by Entity Framework Core Click Here.
Configuration SQL SERVER
For configuration to SQL SERVER you must have two parameters, a) ConnectionString: put your database connection, b) TypeDataBase: Parameter optional, identify type database in this case “SQL SERVER” Click Here
"Spin": "[information Server]"
"Spin": { "ConnectionString": "[information Server]", "TypeDataBase": "SQLServer" },
Configuration MySQL
For configuration to MySQL you must have two parameters, a) ConnectionString: put your database connection, b) TypeDataBase: Parameter mandatory, identify type database, always use “MySQL” Click Here
"Spin": { "ConnectionString": "[information Server]", "TypeDataBase": "MySQL" },
CONTINUE
Congratulations
Now, only must execute Spin.Website project ... can be use SPIN WEB FRAMEWORK. Enjoy it!!