/Store_Centre

Store Centre is a web Application that connects potential clients to a storage facility. Clients can store either personal belongings or business goods in a secure location.

Primary LanguageHTMLMIT LicenseMIT

Store_Centre

21st Jan. 2022

Contributors

Ezekiel Kibiego
Amos Kimutai
Joy Ndegwa
Joan Kirui
Enock Kipsang
Victor Wachira

Description

Store Centre is a storage facility that helps users to store either personal belongings or business goods in a secure location.

Screenshots

Landing Page

Store

Live Link

https://storecentre254.herokuapp.com/

Setup and Installation

Clone the repository:
https://github.com/ezekielkibiego/Store_Centre
Navigate into the folder and install requirements
cd Store_Centre
Install and activate Virtual
- python3 -m venv virtual 
- source virtual/bin/activate  
Install Dependencies
pip install -r requirements.txt 
Setup Database

Create a database

     -psql

     -CREATE DATABASE sent;
  • create .env file and have the following filling where appropriate:

          SECRET_KEY='your secret key'
          DEBUG=True
          MODE='dev'
          DB_NAME='sent'
          DB_USER='username'
          DB_PASSWORD='password'
          DB_HOST='127.0.0.1'
          CD_NAME='cloudinary name'
          CD_API='cloudinary api key'
          CD_SECRET='cloudinary secret key'
          CD_SECURE='True'
          GOOGLE_API_KEY='Google API key'
          E_PASS='email password'
          E_USER='email'
    

    SetUp your database User,Password, Host then make migrations

python manage.py makemigrations store/analytics/units/transport

Now Migrate

python manage.py migrate 
Run the application
python manage.py runserver 
Running the application
python manage.py server 
Testing the application
python manage.py test 

Open the application on your browser 127.0.0.1:8000.

Technology used

Known Bugs

  • There are no known bugs

Support and Contact Information

To make a contribution to the code used or for any queries feel free to contact us via our email addresses;
kibiezekiel@gmail.com
joankirui99@gmail.com
joywambuindegwa@gmail.com
Kipsang1998@gmail.com
desastrecaliente@gmail.com
kimutaiamos82@gmail.com

License

MIT LICENCE

Copyright (c) 2022

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.