原后端仓库已 private archive
。
关于 docker
:
# to check docker
docker version
关于 docker-compose
:
Read this doc to install docker-compose
# to check docker-compose
sudo docker-compose --version
在默认的 arapgp.server.json
中,db.mongo.host
为 127.0.0.1
,为方便本地调试而设置。这里应该改成数据库所在的 host
;port
等字段同理。
{
// some other options...
"db": {
"mongo": { "host": "127.0.0.1", "port": 27017, "username": "ljg", "password": "ljg", "database": "ljgtest" }
}
// some other options...
}
由于本仓库使用 go
作为主要语言,在 build
/ up
的过程中,指令 go build
可能由于 go get xxxx
耗费时间过长而被迫中断。这个时候需要想想办法。
# at repo root to build
sudo chmod +x ./script/build/docker-init.sh
./script/build/docker-init.sh
# check whether go installed well
go version
Read these doc to install MongoDB
# MongoDB-Path is where you install MongoDB
cd <MongoDB-Path>
# to enter MongoDB shell
./bin/mongo
还请注意 arapgp.server.json
,现在使用的是 ljgtest
数据库中的 ljg
用户。如果没有创建的话,可能得手动创建一下:
# in MongoDB shell
# to check existed users
> show users
# create a new database (if not existed, MongoDB shell will help to create one)
> use ljgtest
# create a new user
> db.createUser({user: "ljg", pwd: "ljg", roles: [{role: "userAdminAnyDatabase", "db": "admin"}]})
# clone this repo
git clone https://github.com/Arapgp/Arapgp-Server-go
# run arapgp.go
cd Arapgp-Server-go
go run arapgp.go
目前进度:
-
POST /api/v1/signup
-
POST /api/v1/login
-
POST /api/v1/logout
-
GET /api/v1/user
-
GET /api/v1/pubKey
-
POST /api/v1/pubKey
-
PUT /api/v1/pubKey
-
DELETE /api/v1/pubKey
-
GET /api/v1/user/:username/file
-
POST /api/v1/user/:username/file
-
PUT /api/v1/user/:username/file
-
DELETE /api/v1/user/:username/file
-
GET /api/v1/ping