Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mbrsagor/inventory
Django & Angular.JS Simple Inventory web App.
https://github.com/mbrsagor/inventory
angular2 django drf rest-api
Last synced: 1 day ago
JSON representation
Django & Angular.JS Simple Inventory web App.
- Host: GitHub
- URL: https://github.com/mbrsagor/inventory
- Owner: mbrsagor
- Created: 2018-12-29T09:41:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-21T18:04:33.000Z (9 months ago)
- Last Synced: 2024-02-21T19:26:15.014Z (9 months ago)
- Topics: angular2, django, drf, rest-api
- Language: JavaScript
- Homepage:
- Size: 15.6 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inventory web app
> Basically the app for simple inventory management web app. Backend using Django restfully API and frontend data receive Angular.JS
### Setup
The following steps will walk you thru installation on a Mac. I think linux should be similar. It's also possible to develop on a Windows machine, but I have not documented the steps. If you've developed django apps on Windows, you should have little problem getting up and running.
##### Dependencies
> Prerequisites- Python 3.6.6
- Django 2.2.20
- psql (PostgreSQL) 13.2##### on Mac
```
brew install pyenv
pyenv install 3.6.6
```Then create a virtualenv inside the project directory. Please follw the command
```
brew install pyenv-virtualenv
pyenv virtualenv 3.6.6 env_name
```
###### Active your virtualenv
```bash
source venv/bin/activate
.env
```#### Install dependencies and active project.
```
pip install -r requirements.txt
./manage.py migrate
./manage.py runserver
```