Modularz in another CMS that does nothing better than others. It is designed to be an awefull thing, just to provide another crappy CMS to the world. BUT : it's coded by me, designed for my own use. That's a good reason for its existence.
Bad Idea. You're probably a NoCoder, so go away. Really.
Still There ?
Ok ... Prerequisites :
- .Net 6 SDK
- PostgresSQL Database
- Redis Server
- Brain
What you need to do :
- Clone. (learn git)
- Install .Net 6 SDK
- Create an appsettings.json inside Modularz Directory. I'm pretty sure that you can't guess what to put inside, so here is an example.
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Database": "Server=my-postgresqldatabaseserver.com;Port=5432;Database=mydabatabse;User Id=user;Password=password;Include Error Detail=true;",
"Environnement": {
"RedisConnection": "myredisserver.com,ssl=false,password=myredispasssword,defaultDatabase=0",
"EnvName": "MyEnvironment"
}
}
- Open a console and browse to your modularz directory
- Install npm packages (npm i )
npm run watch:webpack
to start static resources live builds, ornpm run build:prod
to build production ready assets.- Build or Launch Modularz project using
dotnet