Republic Time Internet: Django Reusable app to design RTI Home Page.
Project description
republictime is a Reusable Django app to design Republic Time Internet.
Installation :
You can install republictime from PyPI using pip.
pip install republictime
Configuration :
1. Open the settings.py
module of your project folder, And put republictime into INSTALLED_APPS
.
INSTALLED_APPS = ( 'republictime', )
2. Open the urls.py
module of your project folder, And include republictime URL.
urlpatterns = [ re_path(r'^$', include('republictime.urls', namespace='republictime')), ]
3. Setup the Templates for republictime.
Important Note: republictime App is a part of Djangoengine project. And if you want to access UI part of republictime App, You need to configure some Reusable/global templates to your django project or you can create your own templates, It's very easy.
TEMPLATES = [ 'DIRS': [os.path.join(BASE_DIR, 'templates'),], ]
Create the templates
folder inside BASE_DIR
and Then create djangoadmin
folders inside the templates folder.
Then download the djangoadmin templates and put them inside the djangoadmin
folder.
4. Static files configuration.
Open your settings.py
module and Configure Static files and media files or you can can use your own configuration.
STATIC_URL = '/static/' STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static-local'),) STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static-root', 'static') MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'static-root', 'media')
Create the static-local
folder inside BASE_DIR
, Then create djangoadmin
folders inside that static-local
folder.
And also download the djangoadmin static files and put them inside the djangoadmin
folder.
Complete the republictime setup by running the following command in sequence.
python manage.py makemigrations python manage.py migrate python manage.py collectstatic python manage.py runserver
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for republictime-2.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c34e6b61347ad70f73708aa5fb5a4231ab3eea968ed3ca72c1efa1fd050981fd |
|
MD5 | 7f505bfed35fe9431c8fc57f4002ccd4 |
|
BLAKE2-256 | 1a933ec4c5c98603eb868ebfef6b56cbf9307a3568b21d26d649e38d10059979 |