GitXplorerGitXplorer
M

Cheqqit

public
10 stars
3 forks
0 issues

Commits

List of commits on branch main.
Unverified
67dcc6a620afc788a4d0e7352c112eeab5ccaf99

update packages

MMannuel25 committed 2 years ago
Unverified
696e932b5354c0df9b1e822e5c8e2d918a39bee6

update++

MMannuel25 committed 2 years ago
Unverified
c9a4b4b53d17beccfa7abd5e318f537238f89252

add staticfiles

MMannuel25 committed 2 years ago
Unverified
4d2cc2a8b702265cff8b53692d949413c088793d

update

MMannuel25 committed 2 years ago
Unverified
8f2b2447fcd00e4951d16580267de2930cc42253

update signup form

MMannuel25 committed 3 years ago
Unverified
30c2a9f0640f0f8c8121387ada98b9570c721e6b

update

MMannuel25 committed 3 years ago

README

The README file for this repository.
Picture

Cheqqit

Cheqqit is a beautiful and easy-to-use online tool that helps you keep track of your tasks.

Preview ✨

Image

Click on this link to view Cheqqit.

Guidelines on how to run locally 💻

Clone this repository

git clone https://github.com/Mannuel25/Cheqqit.git

Change directory

Change your directory to where you cloned the repository

cd Cheqqit

Create a virtual environment in the cheqqit directory

Ensure you are in the cheqqit directory, run this command to create a virtual environment:

python -m venv .\venv

Activate the virtual environment

Activate the virtual environment using the following command:

venv\scripts\activate

Note: Upon running the command venv\scripts\activate, if this error shows up:

venv\scripts\activate : File C:\Users\Training\Documents\New folder\venv\scripts\Activate.ps1 cannot be loaded because running scripts is 
disabled on this system. For more information, see about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170.

Run this command:

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted 

Then run the command to activate the virtual environment

Install all necessary packages

pip install -r requirements.txt

Update the database

Copy this snippet and replace it with the database configuration settings, or if you are familiar with Postgres, create a new database and connect it to the app.

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}

Generate a new secret key

Make use of Djecrety to generate your secret key.

Make migrations

Run the following commands separately to make migrations

python manage.py makemigrations
python manage.py migrate

Create a new superuser

Run the following command to create a new superuser

python manage.py createsuperuser

Update debug settings in the project folder

if os.environ.get('DEBUG')=='TRUE':
    DEBUG = True
elif os.environ.get('DEBUG') =='False':
    DEBUG = False

Comment out the above snippet and add this below it DEBUG = True

Run the project

python manage.py runserver

Contribution 🌟

Are you interested in making any contribution to the project?. Be sure to follow the contribution guidelines while making your contributions. If you love this project, kindly give it a star ⭐ and share it with others 🤗.

License 🔐

Thsi project is under an MIT LICENSE