Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/analitico/analitico
Client, server, APIs and backoffice
https://github.com/analitico/analitico
artificial-intelligence machine-learning machine-learning-toolbox
Last synced: 3 days ago
JSON representation
Client, server, APIs and backoffice
- Host: GitHub
- URL: https://github.com/analitico/analitico
- Owner: analitico
- License: other
- Created: 2019-01-14T15:55:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T04:30:53.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T19:57:58.404Z (over 1 year ago)
- Topics: artificial-intelligence, machine-learning, machine-learning-toolbox
- Language: Jupyter Notebook
- Homepage: https://analitico.ai
- Size: 92 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 96
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# !! Project source code moved to GitLab due to CD/CI mirroring limitation !!
# analitico.ai
This project includes analitico's website, APIs and libraries. A number of experiments, data sources, queries, jupyter notebooks are also available. Large data files and models are stored externally.
[![CodeFactor](https://www.codefactor.io/repository/github/analitico/analitico/badge?s=a5958aced86f3af20cf6a88be39e3895fd9e34f2)](https://www.codefactor.io/repository/github/analitico/analitico)
Environment
---Install runtime secrets:
`source ../analitico-ci/analitico-env.sh`Create the virtual environment
`python3 -m venv venv`Activate the environment
`source venv/bin/activate`Deactivate the environment
`deactivate`See which packages are in use in the environment
`pip freeze`Update requirements file
`pip freeze > requirements.txt`Install requirements
`pip install -r requirements.txt`Run development server
`python3 source/manage.py runserver 0.0.0.0:8000`Run tests
`cd source`
`python3 manage.py test`Resources
---Django Tutorial
https://docs.djangoproject.com/en/2.1/intro/tutorial01/Use Django in Visual Studio Code
https://code.visualstudio.com/docs/python/tutorial-djangoDjango REST Framework
https://www.django-rest-framework.org/GitLab CI/CD Pipelines
https://gitlab.com/gionata/analitico-api/pipelinesGoogle Cloud Functions Console
https://console.cloud.google.com/functions/list?project=analitico-apiHow to organize project:
https://docs.python-guide.org/writing/structure/Testing
---Django Testing Tools
https://docs.djangoproject.com/en/2.1/topics/testing/tools/Visual Studio Code Unit Testing
https://code.visualstudio.com/docs/python/unit-testing