# tagging_platform **Repository Path**: pengtaocc/tagging_platform ## Basic Information - **Project Name**: tagging_platform - **Description**: A useful tagging platform - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tagging-platform A useful tagging-platform ## Requirement - Python3.7 - Docker ## Installation ``` $ git clone https://github.com/whip1ash/tagging_platform.git $ cd tagging_platform $ sudo docker-compose up -d $ pip3 install -r requirements.txt $ cd src # create table structure $ ./bin/django-migrate.sh ``` ### Import Data #### Import Data from WikipediaSpider result ``` $ cd src # is the location of WikipediaSpider result # Default is ./output.json $ ./bin/import_wiki_data.py ``` #### Import Data from SQL execute file ``` # This step will overwrite data in normal_sentence table, please backup if it's important. $ mysql -uroot -p -P 6606 -h127.0.0.1 -D tag < ./resource/normal_sentence.sql ``` ## Usage ``` $ cd src/ $ ./bin/run-dev.sh ```