Language : English | Tiếng Việt
- Front-end: https://github.com/f7deat/cms
GIT:
$ git clone https://github.com/f7deat/waffle.git
FE:
$ cd ClientApp
$ npm i
$ npm run build
BE:
$ dotnet build
$ dotnet ef migrations add InitialCreate
$ dotnet ef database update
Learn more about Migration: https://learn.microsoft.com/en-us/ef/core/managing-schemas/migrations/
Open your browser and visit http://localhost:8000
web.config: allow cors
</system.webServer>
...
<security>
<requestFiltering>
<verbs>
<remove verb="OPTIONS" />
<add verb="OPTIONS" allowed="true" />
</verbs>
</requestFiltering>
</security>
</system.webServer>
waffle
is available supported in live server: https://cms.defzone.net
Read document:
# | Name | URL |
---|---|---|
1 | API | https://waffleverse.gitbook.io/api/ |