-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.idea/* | ||
*.pyc | ||
*.sqlite3 | ||
account/migrations/* | ||
notes/migrations/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# notes world | ||
This is a website for users to create notes, work on them, collaborate with friends(other users) | ||
|
||
made in [**Django 2.0**](https://djangoproject.com "Django website") | ||
|
||
> **requires python 3.x** | ||
**Note** | ||
the frontend requires [**Bootstrap framework**](http://getbootstrap.com "Bootstrap wesite") 4.x and [JQuery](http://jquery.com "JQuery website") | ||
|
||
## getting started | ||
|
||
1. Clone the repo | ||
```bash | ||
git clone https://github.com/muremwa/notes-world | ||
``` | ||
|
||
2. Install the requirements | ||
```bash | ||
pip install requirements.txt | ||
``` | ||
|
||
3. Make migartions | ||
```bash | ||
python manage.py makemigartions notes | ||
python manage.py makemigartions account | ||
python manage.py migrate | ||
``` | ||
|
||
4. Run Local server | ||
```bash | ||
python manage.py runserver | ||
``` | ||
|
||
5. Browse | ||
|
||
Psing your browser navigate to your local server at [port 8000](http://127.0.0.1:8000) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Django==2.0.6 | ||
django-bootstrap-form==3.4 | ||
django-markdown-deux==1.0.5 | ||
django-pagedown==1.0.5 | ||
django-widget-tweaks==1.4.2 | ||
markdown2==2.3.5 | ||
Pillow==5.1.0 |