Skip to content

c01nd01r/bloodmallet_web_frontend

 
 

Repository files navigation

dev.bloodmallet.com

You're seeing the code that runs dev.bloodmallet.com.

Everyone is welcome to add issues, discuss improvements and features, or create pull requests.

Development setup

  1. Get or have Python 3.6+ (make sure to install it into PATH on windows)
  2. Get or have git installed
  3. Download this repository
    • $ git clone https://github.com/Bloodmallet/bloodmallet_web_frontend.git bloodmallet (creates a directory "bloodmallet")
  4. Navigate into the created directory
    • $ cd bloodmallet/
  5. Create a virtual environment
    • $ python3 -m venv env (creates a directory "env")
    • activate virtual environment
      • > env/Scripts/activate (windows)
      • $ source env/bin/activate (linux)
  6. Install requirements
    • (env) bloodmallet/$ python -m pip install --upgrade pip setuptools wheel (update all basic tools)
    • (env) bloodmallet/$ pip install -U -r requirements_dev.txt (install requirements)
  7. Create local database and tables
    • (env) bloodmallet/$ python manage.py migrate
  8. Start local django development server
    • (env) bloodmallet/$ python manage.py runserver
  9. Open http://127.0.0.1:8000 in your browser of choice. And code away! 🎉

Optional:

Maybe you want to create a superuser for local development.

About

Frontend of dev.bloodmallet.com

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 60.7%
  • HTML 19.0%
  • Python 17.5%
  • SCSS 2.1%
  • Other 0.7%