GithubHelp home page GithubHelp logo

random-repo-2's Introduction

Django API Starter

Versions

  • Python 3.9.x
  • Django 3.2.x

Installation

Clone repo:

git clone https://github.com/inputlogic/django-api-starter.git ___PROJNAME___
cd ___PROJNAME___

Create and activate local python environment:

python -m venv env
. ./env/bin/activate

Install requirements:

pip install -r requirements.init.txt
pip freeze > requirements.txt
rm requirements.init.txt

A note on requirements.init.txt vs requirements.txt:

requirements.init.txt installs the latest versions of each package.

If you have problems with the packages installed from requirements.init.txt, try installing django-api-starter's requirements.txt instead. It contains specific versions that are expected to work.

Save local environment variables:

mv env.template .env

Create database:

createdb ___PROJNAME___

Change database name in project/settings.py to match the one you just created:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'django', # ___CHANGEME___
        'USER': 'postgres',
        'PASSWORD': 'postgres'
    },
}

Django setup:

python manage.py migrate
python manage.py createsuperuser
python manage.py collectstatic

Create a fresh git repo for the new project:

rm -rf .git
git init
git commit -am '___PROJNAME___ initial commit from django-api-starter'

Project Configuration

(Note that areas requiring configuration have been marked with ___CHANGEME___, to make them easy to find.)

Delete example apps:

rm -rf apps/workerexample
rm -rf apps/proxyexample

Remove references to example apps from project/settings.py & project/urls.py

random-repo-2's People

Contributors

hawleyjean avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.