Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ianshulx/student-record-crud-application
A simple CRUD application to manage college student records
https://github.com/ianshulx/student-record-crud-application
crud crud-application django python python3
Last synced: 18 days ago
JSON representation
A simple CRUD application to manage college student records
- Host: GitHub
- URL: https://github.com/ianshulx/student-record-crud-application
- Owner: ianshulx
- License: mit
- Created: 2022-10-08T06:14:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-15T05:16:07.000Z (2 months ago)
- Last Synced: 2024-10-12T07:26:40.700Z (about 1 month ago)
- Topics: crud, crud-application, django, python, python3
- Language: JavaScript
- Homepage:
- Size: 6.85 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Students-record-CRUD-project
## Framework & Programming languages used
Project is created with:
* Python version: 3.7
* Django: 3.1.14
## Setup
To run this project:
download the project, Unzip on on local machine
open it in your terminal or vs-code and run the following commands```
#create virtual enviriment uisng this code
$ python -m venv venv#now activate virtual enviroment
$ venv\Scripts\Activate#now clone this repo & intsall
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py runserver```