REPOSITORY OVERVIEWLive repository statistics
★ 2Stars
⑂ 0Forks
◯ 3Open issues
◉ 2Watchers
30/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10 Community adoption25% weight
5 Maintenance state20% weight
40 License clarity10% weight
100 Project information10% weight
75 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
This is a Django project. A product manager, where it has the register of product, updates of data product, the exclusion of product and th listing of all products added. :stars:
:pushpin: Table of Contents
Pages screenshot
Technologies
Prerequisites
- Python 3.7.1+ installed in your machine
- Postgresql installed in your machine
-
Creation of virtual environment
# Installing virtualenv for Python
$ python3 -m pip install virtualenv
# Creating your virtual environment
$ python3 -m virtualenv name-of-your-virtual-environment
# Activating virtual environment
$ source name-of-your-virtual-environment/bin/activate
-
Installing dependencies
# Enter in folder of project
$ cd product_manager/
Make sure what the virtual environment this activated.
# Installing requirements
(name-of-your-virtual-environment) $ pip install -r requirements.txt
-
Configuring the database connection
# In product_manager/settings.py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'name-of-your-database',
'USER': 'user-of-your-database',
'PASSWORD': 'password-of-your-database',
'HOST': 'localhost',
'PORT': '5432',
}
}
-
Migrating database
# Building the database tables and fields
(name-of-your-virtual-environment) $ python manage.py makemigrations
# Migrating for database
(name-of-your-virtual-environment) $ python manage.py migrate
How to run
With your virtual environment enabled
# Running the application
(name-of-your-virtual-environment) $ python manage.py runserver
License
Released in 2020 :closed_book: License.
Made with :heart: by Igor Silva.
This project is under the MIT license.
Give a :star: if this project helped you!
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
This is a blog web app with user authentication and commenting with advanced CRUD operations. This Project was created to demonstrate my skill on developing Fullstack web applications using Python. (Flask & Server Side Rendering)
34/100 healthActive repositoryHas homepage
JavaScriptNo license#authentication#blog#bootstrap4#css
⑂ 0 forks◯ 0 issuesUpdated Apr 21, 2024
Project homepage ↗This is a blog website created using HTML5, CSS3 and Bootstrap4 for front-end, python as backend and for POC purpose - SQLite, and for deployment purpose - PostgreSQL is used. This website has many features like CRUD operations for posts, User registration, authentication and Profile creation. Unit testing of each functionality is done using django.test.
27/100 healthActive repository
PythonNo license
⑂ 0 forks◯ 0 issuesUpdated Aug 18, 2020