GitXplorerGitXplorer
M

Cheqqit

public
10 stars
3 forks
0 issues

Commits

List of commits on branch main.
Unverified
7033a284ead2fe39307c60f4267b738ff7380e78

configure staticfiles

MMannuel25 committed 2 years ago
Unverified
c6f6d7b4f9fd5db4cfd65f476b3b8f93d1520f05

configure staticfiles

MMannuel25 committed 2 years ago
Unverified
7d7c5e27b57d723e2d3499a94178fa80d0274c52

update

MMannuel25 committed 2 years ago
Unverified
8903bb5f58f921c2a0aa0d13ad26018af3c54407

update

MMannuel25 committed 2 years ago
Verified
91f22b655603edf918673a948fb8edc9a75344e2

Delete .env

MMannuel25 committed 2 years ago
Unverified
74e410278741f02f6105795e2763a3594013fd5e

update staticfiles

MMannuel25 committed 2 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