Click on this link to view Cheqqit.
git clone https://github.com/Mannuel25/Cheqqit.git
Change your directory to where you cloned the repository
cd Cheqqit
Ensure you are in the cheqqit directory, run this command to create a virtual environment:
python -m venv .\venv
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
pip install -r requirements.txt
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',
}
}
Make use of Djecrety to generate your secret key.
Run the following commands separately to make migrations
python manage.py makemigrations
python manage.py migrate
Run the following command to create a new superuser
python manage.py createsuperuser
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
python manage.py runserver
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 🤗.
Thsi project is under an MIT LICENSE