Giter Site home page Giter Site logo

sadib400 / nasimportfolio Goto Github PK

View Code? Open in Web Editor NEW

This project forked from raihanba13/nasimportfolio

0.0 0.0 0.0 8.42 MB

Django full functional portfolio and blog web application.

Home Page: https://nasimportfolio.herokuapp.com

License: MIT License

Python 1.44% C 20.61% C++ 9.96% Batchfile 0.06% PowerShell 0.08% Tcl 59.94% CSS 2.75% JavaScript 1.24% HTML 3.91%

nasimportfolio's Introduction

Portfolio Django web application

Django full functional portfolio + blog web application.

Image of homeage of this repository

Prerequisite:

1: python 3.8

How to install:

Download or clone the reposatory. Goto project root folder.
C:\>git clone https://github.com/Nasim-NIMU/nasimportfolio.git

C:\>cd nasimportfolio

C:\nasimportfolio>cd djnago

C:\nasimportfolio\django>scripts\activate.bat

(django)C:\nasimportfolio\django>cd ..

(django)C:\nasimportfolio>pip freeze > requirements.txt

(django)C:\nasimportfolio>pip install -r requirements.txt

(django)C:\nasimportfolio>python manage.py migrate

(django)C:\nasimportfolio>python manage.py runserver
### It will start a local server on 'http://localhost:8000'
create a super user using,
(django)C:\nasimportfolio>python manage.py createsuperuser
then go to http://localhost:8000/admin to accesss your administrations to control your dynamic application.
It's ready to deploy in heroku.Before deploy in heroku, change the local database in settings.py according to:
You will find database settings like this.
DATABASES = {
    
    'default': {
        
        'ENGINE': 'django.db.backends.sqlite3',
        
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
   
   }

}
You need to change it like below,
DATABASES = {
    
    'default': {
        
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
       
        'NAME': 'personal_db',
        
        'USER': 'your user',
        
        'PASSWORD': 'your password',
        
        'HOST': 'localhost',
        
        'PORT': '2000',
        
    }

}
###### Congrats! everything is setup. Your project ready to deploy in heroku for live your project online.
Get any error, send me the scrrenshot at my inbox, i will try to give you the solution.
Facebook: https://facebook.com/Nasim.nimu2011
Email: [email protected]
Phone: 01777-424142

nasimportfolio's People

Contributors

nasim-007 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.