Skip to content

Latest commit

 

History

History
70 lines (56 loc) · 1.59 KB

README.md

File metadata and controls

70 lines (56 loc) · 1.59 KB

Foursquare Client Project: Euler's 4Square Client

In this project, I need to build a Foursquare client using Django Framework.
This project is prepared for HIPO.

Installation

Install Django

$ pip install django

Create and activate a virtual environment.

$ python3 -m venv venv
$ source venv/bin/activate

Create a project

$ django-admin startproject euler

Create the web apps

$ python manage.py startapp web

Create an admin user

$ python manage.py createsuperuser

Install requests

$ pip install requests

Create sqlite database.

$ python manage.py makemigrations
$ python manage.py migrate

The development server: to verify your Django project works.

$ python manage.py runserver

Create a file which contains requirements of technical part(version).

$ pip freeze > requirements.txt

Deployment

This project deploys on PythonAnywhere

References