https://github.com/eshaan7/sharenotesonhaste
https://sharenotesonhaste.herokuapp.com/
https://github.com/eshaan7/sharenotesonhaste
css django django-project html note-taking notes notes-app python sqlite3
Last synced: about 2 months ago
JSON representation
https://sharenotesonhaste.herokuapp.com/
- Host: GitHub
- URL: https://github.com/eshaan7/sharenotesonhaste
- Owner: eshaan7
- Created: 2019-01-29T19:21:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-19T11:29:00.000Z (almost 6 years ago)
- Last Synced: 2025-02-09T03:25:58.490Z (4 months ago)
- Topics: css, django, django-project, html, note-taking, notes, notes-app, python, sqlite3
- Language: Python
- Size: 127 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ShareNotesOnHaste
## New functions
1. add reply functionaity
2. add edit functionality
3. add expand func## Install
Made using [Django](https://www.djangoproject.com/) with [Python 3](https://www.python.org/).
#### How to install on LINUX/MAC
Requirements
```sh
$ python3 -m venv venv # CREATE YOUR VENV
$ source venv/bin/activate # LINUX > ACTIVATE VENV
$ --- / --- / --- / ---- / ----
(venv) $ pip install Django # INSTALL DJANGO IN VENV
```#### How to install on Windows
Requirements
```sh
< C:\USER\DIR > $ python3 -m venv venv # CREATE YOUR VENV
< C:\USER\DIR > $ venv\scripts\activate.bat # WINDOWS > ACTIVATE VENV
--- / --- / --- / ---- / ----
(venv) < C:\USER\DIR > $ pip install Django # INSTALL DJANGO IN VENV
```Run project
```sh
(venv) $ cd
(venv) $ git clone
(venv) $ python manage.py migrate
(venv) $ python manage.py createsuperuser
(venv) $ python manage.py runserver
```[127.0.0.1:8000/login](http://127.0.0.1:8000/login)
```
Note: If you use this project do not forget to change the security key.
```