8000 GitHub - Retoi-II/presentation_webview: Analytical Webview
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Retoi-II/presentation_webview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Availability

  • Django;
  • AdminLTE Integrated;
  • Initial Commit;

Setup

Install Django

py -m pip install django

Development Setup

  • settings.py
DEBUG = True
  • import AdminLTE 3.2.0 dist folder into static/adminlte3.2.0@dist/

Static Files Setup

import os
...

...
TEMPLATES = [
   {
      ...
      'DIRS': [os.path.join(BASE_DIR, 'templates')],  # Tambahkan path ke folder templates
      ...
      },
   ]
...

...
STATICFILES_DIRS = [
   os.path.join(BASE_DIR, 'static'),
]

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
...

Run Application

py manage.py runserver

Softbed

  • AdminLTE 3.2.0
  • Python 3.12.0
  • Django 5.1.0
  • Any IDE
  • windows cmd

About

Analytical Webview

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0