{"id":18861333,"url":"https://github.com/esausilva/fullcalendar-aspnet-core","last_synced_at":"2025-04-14T12:31:07.493Z","repository":{"id":44163295,"uuid":"161344186","full_name":"esausilva/fullcalendar-aspnet-core","owner":"esausilva","description":"Implementation of FullCalendar in ASP.NET Core","archived":false,"fork":false,"pushed_at":"2023-01-04T21:39:53.000Z","size":2247,"stargazers_count":35,"open_issues_count":18,"forks_count":28,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-03-28T01:50:33.102Z","etag":null,"topics":["aspnet-core","event-calendar","fullcalendar","netcore","sql-server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/esausilva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-12-11T14:14:19.000Z","updated_at":"2025-02-19T22:01:06.000Z","dependencies_parsed_at":"2023-02-02T21:01:19.549Z","dependency_job_id":null,"html_url":"https://github.com/esausilva/fullcalendar-aspnet-core","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esausilva%2Ffullcalendar-aspnet-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esausilva%2Ffullcalendar-aspnet-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esausilva%2Ffullcalendar-aspnet-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esausilva%2Ffullcalendar-aspnet-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/esausilva","download_url":"https://codeload.github.com/esausilva/fullcalendar-aspnet-core/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248881412,"owners_count":21176850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aspnet-core","event-calendar","fullcalendar","netcore","sql-server"],"created_at":"2024-11-08T04:29:09.048Z","updated_at":"2025-04-14T12:31:06.886Z","avatar_url":"https://github.com/esausilva.png","language":"JavaScript","funding_links":["https://www.buymeacoffee.com/esausilva"],"categories":[],"sub_categories":[],"readme":"# FullCalendar .NET Core with Visual Studio\n\n\u003e Implementation of [FullCalendar](https://fullcalendar.io/) in ASP.NET Core\n\nThe project includes the implementation of FullCalendar in JavaScript ES6+ and comes wired with the necessary database access layer (including SQL statements) to interact with SQL Server.\n\n## Setting Up\n\n### Frontend\n\nYou will need to have [Node](https://nodejs.org) and npm installed as I use [Webpack](https://webpack.js.org) to compile my Sass files and modern ES6+ JavaScript files to JavaScript browsers can understand.\n\nClone this repository then in **Command Prompt** navigate to the project's directory and install NPM packages\n\n```\ncd [project's path]\\fullcalendar-core\\fullcalendar-core\nnpm i\n```\n\nYou will also need [NPM Task Runner](https://marketplace.visualstudio.com/items?itemName=MadsKristensen.NPMTaskRunner) as I have set up to run Webpack in watch mode when the project opens. Webpack will also run before each build _building_ the JavaScript for production. You can see the bindings if you open **Task Runner** within Visual Studio\n\n### Backend\n\nIn SQL Server create a database and name it `fullcalendar`, then create a table and name it `Events` with the following format\n\n| Column Name | Data Type                        |\n| ----------- | -------------------------------- |\n| event_id    | PK, int, identity(1,1), not null |\n| title       | VarChar(300), not null           |\n| description | VarChar(max), not null           |\n| event_start | DateTime, not null               |\n| event_end   | DateTime, null                   |\n| all_day     | Bit, not null                    |\n\nOnce you have that, open `appsettings.json` and change the connection string to reflect your database connection.\n\n## Things to Know\n\nThe source Sass and JavaScript files are found under `.\\Styles` and `.\\Scripts` directories. Webpack will compile them every time upon save and place the output files under `.\\wwwroot\\css` and `.\\wwwroot\\js`, so DO NOT modify these output files.\n\nFor production, Webpack will minify and optimize the output files appending `*.min.*` to the file name. The CSS will also get auto-prefixed.\n\n## Implemented Features\n\n- Update existing events\n- Create single day events\n- Create all day events\n- Delete events\n\n## Upcoming Features\n\n- Drag \u0026 Drop events\n- Rezise events\n\n_In no particular order_\n\n## Giving Back\n\nIf you would like to support my work and the time I put into making tutorials, consider getting me a coffee by clicking on the image below. I would really appreciate it!\n\n[![Buy Me A Coffee](https://www.buymeacoffee.com/assets/img/custom_images/black_img.png)](https://www.buymeacoffee.com/esausilva)\n\n## Preview\n\n![Imgur](https://i.imgur.com/p6BjJ2Vm.jpg)\n\n![Imgur](https://i.imgur.com/3378pXYm.jpg)\n\n![Imgur](https://i.imgur.com/nlDoTsQm.jpg)\n\n-Esau\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesausilva%2Ffullcalendar-aspnet-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fesausilva%2Ffullcalendar-aspnet-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesausilva%2Ffullcalendar-aspnet-core/lists"}