Backend API for Anomi, a discussion and content sharing website.
Install go, then
go get github.com/anominet/anomi
go install github.com/anominet/anomi
Run anomi -h
for help.
Make sure you have docker installed and working.
cd ~/$GOPATH/src/github.com/anominet/anomi
make
First start a redis container
docker run --name anomi-redis -v $DATA_DIR:/data -d redis redis-server --appendonly yes
Generate a rails secret key and create the file .env.web
:
RAILS_SECRET_KEY=YOUR_SECRET_KEY_HERE
Then run:
docker-compose up
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.