Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vintage/ads_dashboard
https://github.com/vintage/ads_dashboard
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/vintage/ads_dashboard
- Owner: vintage
- License: mit
- Created: 2019-12-06T20:30:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T18:05:22.000Z (over 3 years ago)
- Last Synced: 2023-03-01T22:52:22.848Z (almost 2 years ago)
- Language: Python
- Size: 473 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ads_dashboard
![Preview](preview.png?raw=true "Preview")
## Local setup
1. Enter the main directory
2. Create new virtualenv based on Py3 `virtualenv .venv -p python3` (or any other tool for managing virtual envs in Python)
3. Activate virtualenv `source .venv/bin/active`
4. Install requried dependencies `pip install -r requirements.txt`
5. Enter Django directory `cd ads_dashboard`
6. Sync the database `python manage.py migrate`
7. Load initial data `python manage.py load_stats`
8. Start server `python manage.py runserver`
9. Application is now accesible at `http://localhost:8000/`Or simply:
1. Run `./dev_setup.sh`
2. Point browser to `http://localhost:8000/`## Not implemented
1. Tests (not even single one)
2. Docker setup through docker-compose
3. Separation of backend (Django, GraphQL) and frontend (React, Apollo)
4. Keeping the secrets secret (env variables)
5. Many other