https://github.com/sumitgirwal/photocanvas-django
Photo Editing Web Application using Django and Bootstrap 5
https://github.com/sumitgirwal/photocanvas-django
ajax css3 django html5 javascript jquery learning-by-doing photo-editing
Last synced: 7 months ago
JSON representation
Photo Editing Web Application using Django and Bootstrap 5
- Host: GitHub
- URL: https://github.com/sumitgirwal/photocanvas-django
- Owner: sumitgirwal
- License: mit
- Created: 2023-02-10T12:32:47.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T11:59:24.000Z (over 2 years ago)
- Last Synced: 2025-01-25T08:47:22.745Z (9 months ago)
- Topics: ajax, css3, django, html5, javascript, jquery, learning-by-doing, photo-editing
- Language: HTML
- Homepage:
- Size: 470 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PhotoCanvas-Django
Photo Editing Web Application using Django and Bootstrap 5#### Quick Run Project
```bash
.\venv\Scripts\activate
cd PhotoCanvas
python manage.py runserverpython manage.py makemigrations
python manage.py migratehttp://127.0.0.1:8000/
.\venv\Scripts\activate
pip install -r requirements.txt.\venv\Scripts\activate
pip freeze > requirements.txtpython manage.py createsuperuser
```
#### Built with
- HTML
- CSS
- JavaScript
- Bootstrap 5
- Python
- Django
#### Installation & Setup
- Install virtual env & create virtual env `venv`
```bash
python -m pip install --user virtualenv
python -m venv venv
```- Activate virtual env
```bash
.\venv\Scripts\activate
```- Install packages
```bash
pip install -r requirements.txt
```- Goto project folder
```bash
cd PhotoCanvas
```- Database migrations
```bash
python manage.py makemigrations
python manage.py migrate
```- Run application
```bash
python manage.py runserver
```
- Hit url in browser
```bash
http://127.0.0.1:8000/
```#### Resources
- [Python](https://www.python.org/)
- [Django](https://www.djangoproject.com/)
- [Django Docs](https://docs.djangoproject.com/en/4.1/intro/tutorial01/)
- [Django Crispy Forms](https://pypi.org/project/crispy-bootstrap5/)
- [Bootstrap 5](https://getbootstrap.com/docs/5.2/getting-started/introduction/)
- [JQuery](https://cdnjs.com/libraries/jquery)
- [Virutal Env Doc](https://virtualenv.pypa.io/en/latest/installation.html)
- [Unsplash](https://unsplash.com/)