gokulvibe / NoteIt-NoteMaker-Django

A cloud based notes making web application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NoteIt-NoteMaker-Django

A cloud based notes making web application

Setup

The first thing to do is to clone the repository:

$ git clone https://github.com/gokulvibe/NoteIt-NoteMaker-Django.git
$ cd NoteIt-NoteMaker-Django

Create a virtual environment to install dependencies in and activate it:

$ virtualenv venv
$ source venv/bin/activate #for linux
$ venv\Scripts\activate #for windows

Note the (venv) in front of the prompt. This indicates that this terminal session operates in a virtual environment set up by virtualenv.

Then install the dependencies:

(venv)$ pip install -r requirements.txt 

Once pip has finished downloading the dependencies:

Apply migrations:

(venv)$ python manage.py migrate

Run the server:

(venv)$ python manage.py runserver

And navigate to http://127.0.0.1:8000/.

About

A cloud based notes making web application

License:MIT License


Languages

Language:HTML 48.5%Language:Python 43.7%Language:CSS 4.5%Language:SCSS 2.4%Language:JavaScript 0.9%