Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theyashshahs/school-management
Backend made with Django, frontend at https://github.com/thecodepapaya/school-management-frontend
https://github.com/theyashshahs/school-management
css django django-project hacktoberfest html html-css
Last synced: 4 days ago
JSON representation
Backend made with Django, frontend at https://github.com/thecodepapaya/school-management-frontend
- Host: GitHub
- URL: https://github.com/theyashshahs/school-management
- Owner: theyashshahs
- Created: 2020-04-29T16:43:19.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2022-11-22T06:14:50.000Z (about 2 years ago)
- Last Synced: 2023-03-09T03:03:21.029Z (almost 2 years ago)
- Topics: css, django, django-project, hacktoberfest, html, html-css
- Language: Python
- Homepage: https://studymanagement.herokuapp.com/
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# school-management
## Development 🔧
## Setup
```sh
$ git clone https://github.com/yashshah2820/school-management.git
$ cd school-management
```### For setting virtual environment
```sh
$ virtualenv venv
```### For activating virtual environment in Windows
```sh
$ venv/Scripts/activate
```### For activating virtual environment in Linux and macOS
```sh
$ source venv/bin/activate
```### For deactivating virtual environment
```sh
$ deactivate
```
After creating virtual environment### Start
```sh
$ pip install -r requirements.txt
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
```### Authors :pencil:
[Yash Shah](https://github.com/yashshah2820) and [Ashutosh Singh](https://github.com/thecodepapaya)