https://github.com/pythonicninja/pymosaico
https://github.com/pythonicninja/pymosaico
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pythonicninja/pymosaico
- Owner: PythonicNinja
- License: mit
- Created: 2016-05-23T16:27:03.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-27T06:35:31.000Z (about 10 years ago)
- Last Synced: 2025-03-30T02:23:08.704Z (about 1 year ago)
- Language: TypeScript
- Size: 606 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mosaicopy

# docker run
```
| => docker-compose up
```
Open browser
```
open localhost
```
# manual running
## backend
virtualenv env
. env/bin/activate
pip install -r requirements.txt
$ in folder mosaicopy/backend
### task queue
```
| => celery -A project worker -l debug
```
### webserver
```
| => ./manage.py runserver_plus
```
### create initial folder
```
| => ./manage.py sync_default
```
### create superuser
```
| => ./manage.py createsuperuser
```
## frontend
```
| => npm install
| => npm start
```