https://github.com/computationalcore/facially-server
https://github.com/computationalcore/facially-server
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/computationalcore/facially-server
- Owner: computationalcore
- License: mit
- Created: 2020-01-15T04:03:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-22T18:24:30.000Z (over 4 years ago)
- Last Synced: 2025-01-07T19:45:46.743Z (about 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# facially-targeted-ads-server
(Work in progress)
A backend app, part of the Facelly-targeted Ads Platform, that run the core web services which provide Ads CRUD and analytics API, and provide communications via MQTT to the edge app.
## Getting Started
### Local project setup
Run following command to install python pre-requisite for mysqlclient python
#### Ubuntu
```
sudo apt-get install python3-dev postgresql postgresql-contrib
```
### Redhat / CentOS
```
sudo yum install python3-devel postgresql-server postgresql-contrib
```
### macOS
```
brew install brew install pgloader
```
Use anaconda / virtualenv for setting up this project
Install pip requirements
```
pip install -r requirements.txt
```
Start server by executing command
```
(virtualenv / conda environment) > python manage.py runserver
```