Here is a live version of the application: https://yasozluk.herokuapp.com/
-
Clone this repository:
$ git clone https://github.com/seyyidibrahimgulec/yasozluk.git
-
Create a virtual environment in the project folder:
$ python -m venv venv
-
Activate the virtual environment:
$ source venv/bin/activate
-
Install the requirements:
$ pip install -r requirements.txt
-
Create database
$ psql
$ CREATE DATABASE yasozluk;
-
Migrate database
$ python manage.py migrate
-
To start server, run this command in the project directory:
$ python manage.py runserver
-
Open http://localhost:8000 to view it in the browser.