/api

Indie Coder Back-End

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

Indie Coder Back-End

GPL Licence Open Source Love first-timers-only


Tools:

  • Django
  • Python

Developer Setup:

  • Fork this repository, and cd into it.
git clone https://github.com/<username>/api.git
cd api/

if you are using pip
  • Create and activate your virtual environment.
    • MacOS/Linux:
    virtualenv --no-site-packages env
    source env/bin/activate
    • Windows:
    virtualenv env
    .\env\Scripts\activate
    
  • Install requisite python packages and modules.
pip install -r requirements.txt

if you are using pipenv
  • Create and activate your virtual environment.
    • run
    pipenv shell
    pipenv install

  • Verify if the Django project is working by running the development server.
python manage.py migrate
python manage.py runserver