Coder Social home page Coder Social logo

audibledb-exercise's Introduction

Access the demo:

Visit: audibledb.herokuapp.com

Instructions for Installation on Heroku (Recommended):

Note: the django MySQL dump should be used for constructing the database, which can be found in db/django-dump.sql.

Use git clone https://github.com/kostascc/AudibleDB-Exercise audible to download a copy of this app, and open the root directory.

Run the commands below on Heroku CLI to create and publish the app.

# Create
heroku create audible

# Set ENV
heroku config:set -a audible DEBUG=<[True|False]>
heroku config:set -a audible DATABASE_NAME=<name of your database>
heroku config:set -a audible DATABASE_USER=<database user>
heroku config:set -a audible DATABASE_PASS=<database password>
heroku config:set -a audible DATABASE_HOST=<mysql host, without any protocols (e.g. mysql://) or ports (e.g. :3306)>

# Publish
git push heroku main

Instructions for Installation on Linux/Windows:

Note: the django MySQL dump should be used for constructing the database, which can be found in db/django-dump.sql.

Install Django:

pip install mysqlclient
pip install Django

Initialize the environment with a MySQL database:

export DEBUG=<[True|False]>
export DATABASE_USER=<database username>
export DATABASE_PASS=<database password>
export DATABASE_HOST=<mysql host, without any protocols (e.g. mysql://) or ports (:3306)>
export DATABASE_NAME=<database name>
export CSRF_TRUSTED_ORIGIN=<domain used to access this app>

Run the Django app:

python manage.py runserver 0.0.0.0:8000

audibledb-exercise's People

Contributors

kostascc 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.