-
Form for reserved the date and time for select Appointment.
-
All Appointments list and My Appointments list (authentication user only).
-
Add Appointments, 5 days with 3 time each (authentication user only).
-
Authentication with email and name without password.
-
Show submit Appointments (authentication user only).
-
Email system - send email with appointment data to author and user.
-
Open a terminal and create folder for project.
-
Clone this repositories:
user@ubuntu:~/newfolder$ git clone https://github.com/gopjak36/my-first-blog.git
- Install virtualenv package:
user@ubuntu:~/newfolder$ sudo pip install virtualenv
- Create new virtualenv without additional packages from python:
user@ubuntu:~/newfolder$ virtualenv newvenv --no-site-package
- Open virtualenv:
user@ubuntu:~/newfolder$ source newvenv/bin/active
- Install requirements from requirements.txt:
(newvenv)user@ubuntu:~/newfolder$ sudo pip install -r requirements.txt
- Create database:
(newvenv)user@ubuntu:~/newfolder$ python manage.py migrate
- Run project:
(newvenv)user@ubuntu:~/newfolder$ python manage.py runserver