{"id":26279816,"url":"https://github.com/heminsatya/aurora","last_synced_at":"2025-05-07T03:04:20.211Z","repository":{"id":43726311,"uuid":"441992228","full_name":"heminsatya/aurora","owner":"heminsatya","description":"Aurora is an MVC structured web framework for creating RESTFUL CRUD applications quickly and simply","archived":false,"fork":false,"pushed_at":"2025-03-12T10:17:01.000Z","size":4463,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-07T03:03:57.567Z","etag":null,"topics":["back-end","crud","framework","mvc","mysql","oop","orm","postgres","python","rest","sql","sqlite","web"],"latest_commit_sha":null,"homepage":"https://auroramvc.com/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/heminsatya.png","metadata":{"files":{"readme":"README.md","changelog":"changes/README.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-26T22:05:10.000Z","updated_at":"2025-03-12T10:14:21.000Z","dependencies_parsed_at":"2025-01-10T11:30:57.056Z","dependency_job_id":"8c7e827e-aa36-423c-b962-53edc4e51f52","html_url":"https://github.com/heminsatya/aurora","commit_stats":{"total_commits":68,"total_committers":1,"mean_commits":68.0,"dds":0.0,"last_synced_commit":"2ec77d3bfb3192e9db0c9ff9c4f17c4d53390caa"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heminsatya%2Faurora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heminsatya%2Faurora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heminsatya%2Faurora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heminsatya%2Faurora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heminsatya","download_url":"https://codeload.github.com/heminsatya/aurora/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252804206,"owners_count":21806769,"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":["back-end","crud","framework","mvc","mysql","oop","orm","postgres","python","rest","sql","sqlite","web"],"created_at":"2025-03-14T14:17:01.706Z","updated_at":"2025-05-07T03:04:20.186Z","avatar_url":"https://github.com/heminsatya.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aurora Framework (v0.9.5 beta)\n\nAurora is an MVC web framework for creating CRUD applications quickly and simply.\n\nIt is based on REST architecture. In another word it is a RESTFUL web framework.\n\nAurora is written in [Python](https://www.python.org/), and partially used [Flask](https://flask.palletsprojects.com/).\n\n\n# Installation\n\nYou can install Aurora by running:\n\n```\n$ pip install aurora-mvc\n```\n\n\n# Usage\n\n## Get Started\n\nTo get started with Aurora simply do the following steps:\n\n1. Create the root app (project) directory:\n\n```\n$ mkdir my_app\n```\n\n\u003e Here *my_app* is a variable name. Change it to anything of your choice at any time you want.\n\n2. Create a python virtual environment in the same path the project directory exists:\n\n**Linux / Mac:**\n\n```\n$ python3 -m venv venv\n```\n\n**Windows:**\n\n```\n$ py -m venv venv\n```\n\n3. Activate the virtual environment:\n\n**Linux / Mac:**\n\n```\n$ source venv/bin/activate\n```\n\n**Windows:**\n\n```\n$ venv\\scripts\\activate\n```\n\n4. Navigate to the project directory:\n\n```\n(venv) cd my_app\n```\n\n\u003e Notice that the project directory must be empty, otherwise you will get an error on the next step.\n\n5. Initialize the root app with Aurora via python shell:\n\n**Linux / Mac:**\n\n```\n(venv) python3\n\u003e\u003e\u003e from aurora import init\n\u003e\u003e\u003e init.start()\n```\n\n**Windows:**\n\n```\n(venv) py\n\u003e\u003e\u003e from aurora import init\n\u003e\u003e\u003e init.start()\n```\n\n\u003e Congratulations! You successfully initialized the root app. Now you are ready to get started with Aurora.\n\n6. To start the root app run the following command:\n\n**Linux / Mac:**\n\n```\n(venv) python3 -m app\n```\n\n**Windows:**\n\n```\n(venv) py -m app\n```\n\n\n## Next Steps\n\nDocumentation: [Aurora Docs](https://github.com/heminsatya/aurora/tree/main/docs)\n\nChangelog: [Aurora Changes](https://github.com/heminsatya/aurora/tree/main/changes)\n\nIssues: [Aurora Bug Tracker](https://github.com/heminsatya/aurora/issues)\n\nSource: [Aurora GitHub Repo](https://github.com/heminsatya/aurora)\n\nPyPI: [Aurora PyPI Page](https://pypi.org/project/aurora-mvc/)\n\n\n# Dependencies\n\n## Packages:\n \n- [Flask](https://pypi.org/project/Flask/)\n- [WTForms](https://pypi.org/project/WTForms/) -- For WTForms \u0026 CSRF tokens.\n\n## Database APIs:\n- [sqlite3](https://docs.python.org/3/library/sqlite3.html) -- If you are using SQLite Database. *Included in the standard python library*\n- [mysql.connector](https://pypi.org/project/mysql-connector-python/) -- If you are using MySQL Database.\n- [psycopg2](https://pypi.org/project/psycopg2/) -- If you are using Postgres Database.\n\n\n# About The Author\n\nHello Everyone!\n\nI'm Hemin Satya, a freelance programmer.\nAurora framework is currently in beta version, and I'm trying my best to make it something magnificent. I hope you like it.\n\nIf you saw any bugs or mistakes, please let me know. I'll do my best to solve them asap.\n\nPlease let me know your precious comments, observations, and suggestions.\n([GitHub](https://github.com/heminsatya))\n([Twitter](https://twitter.com/heminsatya))\n\nThank you all.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheminsatya%2Faurora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheminsatya%2Faurora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheminsatya%2Faurora/lists"}